Skip to content

Commit fe7d830

Browse files
authored
Fix spelling (#8467)
1 parent 6597041 commit fe7d830

File tree

16 files changed

+32
-32
lines changed

16 files changed

+32
-32
lines changed

builds/install/arch-specific/aix/classic/makeInstallImage.sh.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ copyIfExists() {
9292
#------------------------------------------------------------------------
9393
# copyFiles
9494
# This function copies all the files for a classic distribution into a
95-
# directory heirachy mirroring the installation.
95+
# directory hierarchy mirroring the installation.
9696

9797
copyFiles() {
98-
# The guts of the tranfer of files and other directories
98+
# The guts of the transfer of files and other directories
9999

100100
if [ -d $TargetDir ]
101101
then

builds/install/arch-specific/freebsd/install.sh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ makeDirs() {
133133
# This function copies all the files into the installation directory(ies).
134134

135135
copyFiles() {
136-
# The guts of the tranfer of files and other directories
136+
# The guts of the transfer of files and other directories
137137

138138
#directories
139139
makeDirs "@FB_BINDIR@ @FB_SBINDIR@ @FB_CONFDIR@ @FB_LIBDIR@ @FB_INCDIR@ @FB_DOCDIR@/sql.extensions @FB_SAMPLEDIR@ \

builds/install/arch-specific/hpux/classic/makeinstallImage.sh.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ copyIfExists() {
9292
#------------------------------------------------------------------------
9393
# copyFiles
9494
# This function copies all the files for a classic distribution into a
95-
# directory heirachy mirroring the installation.
95+
# directory hierarchy mirroring the installation.
9696

9797
copyFiles() {
98-
# The guts of the tranfer of files and other directories
98+
# The guts of the transfer of files and other directories
9999

100100
if [ -d $TargetDir ]
101101
then

builds/install/arch-specific/hpux/super/makeinstallImage.sh.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ copyIfExists() {
7070
#------------------------------------------------------------------------
7171
# copyFiles
7272
# This function copies all the files for a classic distribution into a
73-
# directory heirachy mirroring the installation.
73+
# directory hierarchy mirroring the installation.
7474

7575
copyFiles() {
76-
# The guts of the tranfer of files and other directories
76+
# The guts of the transfer of files and other directories
7777

7878
if [ -d $TargetDir ]
7979
then

builds/install/arch-specific/linux/makeInstallImage.sh.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ ReadOnlyTree() {
152152
#------------------------------------------------------------------------
153153
# copyFiles
154154
# This function copies all the files for a distribution into a
155-
# directory heirachy mirroring the installation.
155+
# directory hierarchy mirroring the installation.
156156

157157
copyFiles() {
158-
# The guts of the tranfer of files and other directories
158+
# The guts of the transfer of files and other directories
159159

160160
#cleanup
161161
if [ -d $TargetDir ]

builds/install/arch-specific/netbsd/install.sh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ BuildRootDir=..
130130
BuiltFBDir=./firebird # Location of the just-built fb.
131131
DestDir=@prefix@
132132

133-
# The guts of the tranfer of files and other directories
133+
# The guts of the transfer of files and other directories
134134
# (mkdir -p <dirname> does not elicit an error message if the <dirname> exists.)
135135
echo Installing binaries
136136
for D in "bin examples include intl doc/sql.extensions UDF"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ AC_SUBST(GPRE_LANGUAGE_MODULES)
879879
dnl Compression switch
880880
COMPRESSION=Y
881881
AC_ARG_WITH(wire-compress,
882-
[ --with-wire-compress support compression of data, transfered over the wire (default=yes)],
882+
[ --with-wire-compress support compression of data, transferred over the wire (default=yes)],
883883
[case "$withval" in
884884
yes) ;;
885885
no) COMPRESSION=N;;

examples/dbcrypt/CryptApplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CryptKey : public ICryptKeyCallbackImpl<CryptKey, CheckStatusWrapper>
3737
if (length > 0 && buffer)
3838
{
3939
memcpy(buffer, &k, 1);
40-
fprintf(stderr, "\nTransfered key to server\n");
40+
fprintf(stderr, "\nTransferred key to server\n");
4141
}
4242
return 1;
4343
}

src/dsql/DdlNodes.epp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2045,7 +2045,7 @@ bool CreateAlterFunctionNode::executeAlterIndividualParameters(thread_db* tdbb,
20452045
{
20462046
Attachment* const attachment = transaction->getAttachment();
20472047

2048-
bool modifed = false;
2048+
bool modified = false;
20492049

20502050
AutoCacheRequest requestHandle(tdbb, drq_m_prm_funcs2, DYN_REQUESTS);
20512051

@@ -2083,12 +2083,12 @@ bool CreateAlterFunctionNode::executeAlterIndividualParameters(thread_db* tdbb,
20832083
FUN.RDB$SQL_SECURITY.NULL = TRUE;
20842084
}
20852085

2086-
modifed = true;
2086+
modified = true;
20872087
END_MODIFY
20882088
}
20892089
END_FOR
20902090

2091-
return modifed;
2091+
return modified;
20922092
}
20932093

20942094
void CreateAlterFunctionNode::storeArgument(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
@@ -3013,7 +3013,7 @@ bool CreateAlterProcedureNode::executeAlterIndividualParameters(thread_db* tdbb,
30133013
{
30143014
Attachment* const attachment = transaction->getAttachment();
30153015

3016-
bool modifed = false;
3016+
bool modified = false;
30173017

30183018
AutoCacheRequest requestHandle(tdbb, drq_m_prm_prcs2, DYN_REQUESTS);
30193019

@@ -3047,12 +3047,12 @@ bool CreateAlterProcedureNode::executeAlterIndividualParameters(thread_db* tdbb,
30473047
P.RDB$SQL_SECURITY.NULL = TRUE;
30483048
}
30493049

3050-
modifed = true;
3050+
modified = true;
30513051
END_MODIFY
30523052
}
30533053
END_FOR
30543054

3055-
return modifed;
3055+
return modified;
30563056
}
30573057

30583058
void CreateAlterProcedureNode::storeParameter(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
@@ -5198,7 +5198,7 @@ void AlterDomainNode::execute(thread_db* tdbb, DsqlCompilerScratch* dsqlScratch,
51985198
newDom.dyn_null_flag = type->notNull;
51995199

52005200
// Now that we have all of the information needed, let's check to see if the field
5201-
// type can be modifed.
5201+
// type can be modified.
52025202

52035203
checkUpdate(origDom, newDom);
52045204

src/dsql/dsql.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -867,8 +867,8 @@ struct Signature
867867
\brief Debug level
868868
869869
0 No output
870-
1 Display output tree in PASS1_statment
871-
2 Display input tree in PASS1_statment
870+
1 Display output tree in PASS1_statement
871+
2 Display input tree in PASS1_statement
872872
4 Display ddl BLR
873873
8 Display BLR
874874
16 Display PASS1_rse input tree

0 commit comments

Comments
 (0)