Skip to content

Commit e066244

Browse files
authored
misc: fix spelling (#8495)
General spelling clean up
1 parent 40f15c8 commit e066244

File tree

10 files changed

+23
-23
lines changed

10 files changed

+23
-23
lines changed

builds/posix/Makefile.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -818,14 +818,14 @@ run_tests_process: tests_process
818818
#___________________________________________________________________________
819819
# various cleaning
820820
#
821-
.PHONY: clean clean_process clean_objects clean_dependancies clean_extern_objects clean_build \
821+
.PHONY: clean clean_process clean_objects clean_dependencies clean_extern_objects clean_build \
822822
clean_gpre_gen clean_icu clean_dbs clean_examples clean_makefiles \
823823
clean_editline clean_all clean_decfloat clean_int128 clean_vers clean_misc
824824

825825
clean:
826826
$(MAKE) TARGET?=$(DefaultTarget) clean_process
827827

828-
clean_process: clean_objects clean_dependancies clean_extern_objects clean_build \
828+
clean_process: clean_objects clean_dependencies clean_extern_objects clean_build \
829829
clean_yacc_gen clean_gpre_gen clean_dbs clean_examples clean_cds clean_tommath \
830830
clean_tomcrypt clean_decfloat clean_int128 clean_vers clean_misc
831831

@@ -898,11 +898,11 @@ clean_extern_objects:
898898
$(RM) `find $(ROOT)/extern/ -type f -name '*.lo' -print`
899899
$(RM) `find $(ROOT)/extern/ -type f -name '*.o' -print`
900900

901-
# Clear out dependancies files created by the gcc compiler
901+
# Clear out dependencies files created by the gcc compiler
902902
# since when .o and other files are deleted the dependant
903903
# targets need to be recalculated
904904

905-
clean_dependancies:
905+
clean_dependencies:
906906
$(RM) -f `find $(TMP_ROOT)/ -type f -name '*.d' -print`
907907

908908
# delete only all of the files of type regular file in $FIREBIRD

builds/posix/make.shared.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ $(GEN_ROOT)/iscguard/iscguard.res: $(SRC_ROOT)/iscguard/iscguard.rc $(SRC_ROOT)/
9393
.PHONY: FORCE
9494

9595

96-
# This target is used in the generated dependancy xxx.d files which are
96+
# This target is used in the generated dependency xxx.d files which are
9797
# automatically created from the .cpp files. To simplify the build
9898
# process, if the .d files does not yet exist, a line is written
99-
# of the form fred.o : FORCE to ennsure that fred.cpp will be
99+
# of the form fred.o : FORCE to ensure that fred.cpp will be
100100
# recompiled MOD 7-Oct-2002
101101

102102
FORCE:

doc/README.makefiles

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ make.platform
7272

7373
This file is created from the prefix.xxx where xxx=linux/darwin/freebsd etc.
7474
It provides a spot for the user to override or repalce macros that have been
75-
defined in make.defaults. In addition extra dependancies can be added to
75+
defined in make.defaults. In addition extra dependencies can be added to
7676
build extra targets.
7777

7878

@@ -98,7 +98,7 @@ which are suitable for shared libraries. On most systems the source
9898
files need to be compiled twice to create both .o and .lo files. F
9999
Fortunately the program libtool can help work with this.
100100

101-
The general format of .o file dependancies is:
101+
The general format of .o file dependencies is:
102102

103103
SERVER_Sources = server.cpp
104104
SERVER_Objects = $(SERVER_Sources:%.cpp=$(OBJ)/%.o)
@@ -108,26 +108,26 @@ So the .o files live in $(OBJ) where:
108108
OBJ = $(ROOT)/gen/$ModuleName
109109

110110

111-
Each Makefile also specifies an AllObjects and Dependancies macro which
111+
Each Makefile also specifies an AllObjects and Dependencies macro which
112112
identified all the objects that this Makefile is to create and the name
113113
of the dependency files generated for those objects.
114114

115115
AllObjects = $(Alice_Objects)
116116

117117

118-
FILE DEPENDANCIES
118+
FILE DEPENDENCIES
119119

120-
Include file dependancy information is automatically generated by the gcc
120+
Include file dependency information is automatically generated by the gcc
121121
compiler.
122122

123123
The gcc compiler has a flag -MMD which will generate in addition to the
124-
.o file a .d file which contains the dependancy chain of #includes required
124+
.o file a .d file which contains the dependency chain of #includes required
125125
for the program. These are then edited and stored in the $(OBJ) directory and
126126
are included in the bottom line of the makefile with
127127

128128
Dependencies = $(All_Objects:.o=.d)
129129

130-
include $(Dependancies)
130+
include $(Dependencies)
131131

132132
PLATFORM SUBDIRS OF JRD
133133

doc/README.monitoring_tables

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Monitoring tables
121121
- MON$WIRE_ENCRYPTED (wire encryption enabled/disabled)
122122
- MON$WIRE_CRYPT_PLUGIN (name of wire encryption plugin)
123123
- MON$SESSION_TIMEZONE (time zone of attachment)
124-
- MON$PARALLEL_WORKERS (number of parallel workes that could be used by attachment)
124+
- MON$PARALLEL_WORKERS (number of parallel workers that could be used by attachment)
125125

126126
MON$TRANSACTIONS (started transactions)
127127
- MON$TRANSACTION_ID (transaction ID)

doc/sql.extensions/README.context_variables2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Usage:
143143
DECFLOAT_TRAPS | Exceptional conditions in operations with DECFLOAT
144144
| values that cause a trap.
145145
|
146-
PARALLEL_WORKERS | Number of parallel workes that could be used by attachment.
146+
PARALLEL_WORKERS | Number of parallel workers that could be used by attachment.
147147
|
148148
PAGES_ALLOCATED | Current value of allocated pages in the database.
149149
|

src/common/Task.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ void Coordinator::runSync(Task* task)
240240
syncWorker->setTask(task);
241241
syncWorker->work(NULL);
242242

243-
// wait for all workes
243+
// wait for all workers
244244
for (int i = 0; i < cntWorkers; i++)
245245
{
246246
WorkerAndThd& wt = taskWorkers[i];

src/dsql/ExprNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9741,7 +9741,7 @@ bool ParameterNode::setParameterType(DsqlCompilerScratch* dsqlScratch,
97419741

97429742
// However, there are situations this leads to problems - so
97439743
// we use the forceVarChar parameter to prevent this
9744-
// datatype assumption from occuring.
9744+
// datatype assumption from occurring.
97459745

97469746
if (forceVarChar)
97479747
{

src/dsql/pass1.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,7 +2149,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
21492149
ExprNode::doDsqlFieldRemapper(remapper, parentRse->dsqlOrder, rse->dsqlOrder);
21502150
rse->dsqlOrder = NULL;
21512151

2152-
// AB: Check for invalid contructions inside the ORDER BY clause
2152+
// AB: Check for invalid constructions inside the ORDER BY clause
21532153
ValueListNode* valueList = targetRse->dsqlOrder;
21542154
NestConst<ValueExprNode>* ptr = valueList->items.begin();
21552155
for (const NestConst<ValueExprNode>* const end = valueList->items.end(); ptr != end; ++ptr)
@@ -2178,7 +2178,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
21782178

21792179
ExprNode::doDsqlFieldRemapper(remapper, parentRse->dsqlWhere);
21802180

2181-
// AB: Check for invalid contructions inside the HAVING clause
2181+
// AB: Check for invalid constructions inside the HAVING clause
21822182

21832183
if (InvalidReferenceFinder::find(dsqlScratch, parent_context, aggregate->dsqlGroup,
21842184
parentRse->dsqlWhere))
@@ -2258,7 +2258,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
22582258

22592259
if (aggregate)
22602260
{
2261-
// Check for invalid contructions inside selected-items list
2261+
// Check for invalid constructions inside selected-items list
22622262
ValueListNode* valueList = rse->dsqlSelectList;
22632263
NestConst<ValueExprNode>* ptr = valueList->items.begin();
22642264
for (const NestConst<ValueExprNode>* const end = valueList->items.end(); ptr != end; ++ptr)
@@ -2282,7 +2282,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
22822282
{
22832283
if (aggregate)
22842284
{
2285-
// Check for invalid contructions inside the order-by list
2285+
// Check for invalid constructions inside the order-by list
22862286
ValueListNode* valueList = rse->dsqlOrder;
22872287
NestConst<ValueExprNode>* ptr = valueList->items.begin();
22882288
for (const NestConst<ValueExprNode>* const end = valueList->items.end(); ptr != end; ++ptr)

src/jrd/blob_filter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ static void open_blob(thread_db* tdbb,
413413
control->ctl_status = localStatus;
414414
control->ctl_exception_message = filter->blf_exception_message;
415415

416-
// Two types of filtering can be occuring; either between totally
416+
// Two types of filtering can be occurring; either between totally
417417
// different BLOb sub_types, or between two different
418418
// character sets (both source & destination subtype must be TEXT in that case).
419419
// For the character set filter we use the to & from_sub_type fields

src/jrd/cvt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ double CVT_date_to_double(const dsc* desc)
127127
// Unknown type - most likely a string. Try to convert it to a
128128
// timestamp -- or die trying (reporting an error).
129129
// Don't worry about users putting a TIME or DATE here - this
130-
// conversion is occuring in really flexible spots - we don't
130+
// conversion is occurring in really flexible spots - we don't
131131
// want to overdo it.
132132

133133
dsc temp_desc;

0 commit comments

Comments
 (0)