Skip to content

Commit d4241d6

Browse files
authored
misc: fix spelling (#8576)
1 parent 64fa369 commit d4241d6

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

examples/api/api4.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Program type: API Interface
33
*
4-
* Desription:
4+
* Description:
55
* This program updates departments' budgets, given
66
* the department and the new budget information parameters.
77
*

examples/api/api5.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Program type: API Interface
33
*
4-
* Desription:
4+
* Description:
55
* This program demonstrates the reallocation of SQLDA
66
* and the 'isc_dsql_describe' statement. After a query
77
* is examined with 'isc_dsql_describe', an SQLDA of correct

src/burp/backup.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,7 @@ int put_text( att_type attribute, const TEXT* text, SSHORT size_len)
22442244
* Write a variable length text string, with embedded spaces.
22452245
* Truncate trailing spaces.
22462246
* Now this routine does not truncate trailing spaces, 3-2002 MOD
2247-
* transfering changes from fb1, I believe this is to do with problems
2247+
* transferring changes from fb1, I believe this is to do with problems
22482248
* with quoted names and embedded spaces.
22492249
* CVC: This routine does trailing spaces truncation, but correctly.
22502250
*

src/dsql/DdlNodes.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7099,7 +7099,7 @@ void RelationNode::defineSetDefaultTrigger(DsqlCompilerScratch* dsqlScratch,
70997099
// If the FK table's column is NOT NULL without DEFAULT, we want to avoid the engine throwing a constraint
71007100
// violation on our trigger's variable, so we declare two variables, one with blr_domain_type_of (don't use
71017101
// DEFAULT and null flag) and another blr_domain_full with DEFAULT and null flag. We swallow the error when
7102-
// transfering the value from the second to the first variable.
7102+
// transferring the value from the second to the first variable.
71037103

71047104
// This could be better done with blr_default, but let's maintain backward compatible BLR for now.
71057105

src/dsql/Nodes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1516,7 +1516,7 @@ class StmtNode : public DmlNode
15161516
thread_db* savedTdbb;
15171517
MemoryPool* oldPool; // Save the old pool to restore on exit.
15181518
Request* oldRequest; // Save the old request to restore on exit.
1519-
jrd_tra* oldTransaction; // Save the old transcation to restore on exit.
1519+
jrd_tra* oldTransaction; // Save the old transaction to restore on exit.
15201520
const StmtNode* topNode = nullptr;
15211521
const StmtNode* prevNode = nullptr;
15221522
WhichTrigger whichEraseTrig = ALL_TRIGS;

src/dsql/Parser.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,15 +399,15 @@ class Parser : public Firebird::PermanentStorage
399399
yyparsestate* yypath;
400400
// Base of the lexical value queue
401401
YYSTYPE* yylvals;
402-
// Current posistion at lexical value queue
402+
// Current position at lexical value queue
403403
YYSTYPE* yylvp;
404404
// End position of lexical value queue
405405
YYSTYPE* yylve;
406406
// The last allocated position at the lexical value queue
407407
YYSTYPE* yylvlim;
408408
// Base of the lexical position queue
409409
Position* yylpsns;
410-
// Current posistion at lexical position queue
410+
// Current position at lexical position queue
411411
Position* yylpp;
412412
// End position of lexical position queue
413413
Position* yylpe;

src/isql/isql.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1265,7 +1265,7 @@ void ISQL_warning(Firebird::IStatus* st)
12651265
*
12661266
**************************************
12671267
*
1268-
* Functional desription
1268+
* Functional description
12691269
* Report warning
12701270
* Simulate isc_print_status exactly, to control stderr
12711271
**************************************/

src/jrd/rpb_chain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* PROGRAM: Server Code
33
* MODULE: rpb_chain.h
44
* DESCRIPTION: Keeps track of record_param's, updated_in_place by
5-
* single transcation
5+
* single transaction
66
*
77
* The contents of this file are subject to the Interbase Public
88
* License Version 1.0 (the "License"); you may not use this file

src/misc/pascal/perf.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
(*
2222
* PROGRAM: JRD Access Method
2323
* MODULE: perf.pas
24-
* DESCRIPTION: Peformance tool block
24+
* DESCRIPTION: Performance tool block
2525
*)
2626

2727
type

src/utilities/rebuild/rstore.epp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ void RSTORE( RBDB rbdb)
5252
READY
5353
ON_ERROR
5454
isc_print_status(gds__status);
55-
printf("can't open the documentaton database\n");
55+
printf("can't open the documentation database\n");
5656
FINISH;
5757
return;
5858
END_ERROR;
5959
START_TRANSACTION
6060
ON_ERROR
6161
isc_print_status(gds__status);
62-
printf("can't start a transaction on the documentaton database\n");
62+
printf("can't start a transaction on the documentation database\n");
6363
FINISH;
6464
return;
6565
END_ERROR;
@@ -241,7 +241,7 @@ static void store_headers( RBDB rbdb)
241241
END_STORE
242242
ON_ERROR
243243
isc_print_status(gds__status);
244-
printf("can't store into the documentaton database\n");
244+
printf("can't store into the documentation database\n");
245245
FINISH;
246246
return;
247247
END_ERROR;

src/yvalve/perf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* PROGRAM: JRD Access Method
33
* MODULE: perf.h
4-
* DESCRIPTION: Peformance tool block
4+
* DESCRIPTION: Performance tool block
55
*
66
* The contents of this file are subject to the Interbase Public
77
* License Version 1.0 (the "License"); you may not use this file

0 commit comments

Comments
 (0)