Skip to content

Commit ee5a856

Browse files
authored
misc: fix spelling (#8578)
1 parent b43278f commit ee5a856

File tree

24 files changed

+38
-38
lines changed

24 files changed

+38
-38
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ writeNewPassword() {
137137
if [ $NewPasswd = "masterkey" ]
138138
then
139139
echo "# for install on `hostname` at time `date`" >> $DBAPasswordFile
140-
echo "# You should change this password at the earliest oportunity" >> $DBAPasswordFile
140+
echo "# You should change this password at the earliest opportunity" >> $DBAPasswordFile
141141
else
142142
echo "# generated on `hostname` at time `date`" >> $DBAPasswordFile
143143
fi

builds/install/misc/firebird.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@
700700
# active connections. If you do not like its default 2-hour keepalive timeout,
701701
# then adjust your server OS settings appropriately. On UNIX-like OS's,
702702
# modify contents of /proc/sys/net/ipv4/tcp_keepalive_*. On Windows,
703-
# follow instrutions of this article:
703+
# follow instructions of this article:
704704
# https://learn.microsoft.com/en-us/troubleshoot/windows-client/networking/tcpip-and-nbt-configuration-parameters
705705
#
706706
# Per-connection configurable.

doc/README.build.posix.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ <h2>
246246
</h2>
247247
<p>
248248
Before building Firebird it is necessary to create the "configure"
249-
script, if one is not included with your distrubtion. The configure
249+
script, if one is not included with your distribution. The configure
250250
script is generated by running the "autogen.sh" script. Autogen.sh
251251
is a shell script located in the root directory of the Firebird
252252
build.

doc/README.fbsvcmgr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SHUT2 0 0
5151
QATEST 0 0
5252
And:
5353
# fbsvcmgr service_mgr -user sysdba -password masterke -info_server_version -info_implementation
54-
will report both server version and it's implemenation:
54+
will report both server version and it's implementation:
5555
Server version: LI-T2.1.0.15740 Firebird 2.1 Alpha 1
5656
Server implementation: Firebird/linux AMD64
5757
But attempt to mix all of this in single command line:

doc/sql.extensions/README.default_parameters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SQL Language Extension: default paremeters in stored procedures
1+
SQL Language Extension: default parameters in stored procedures
22

33
Function:
44
allow input parameters of stored procedures to have optional default values

doc/sql.extensions/README.sql_security.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ connect 'localhost:/tmp/59.fdb' user us password 'pas';
8686
select f(3) from rdb$database;
8787

8888

89-
Example 3. It's enought to grant only EXECUTE privilege to user US for procedure P.
89+
Example 3. It's enough to grant only EXECUTE privilege to user US for procedure P.
9090
In case of INVOKER it will require also INSERT for table T to either user US or procedure P.
9191

9292
set term ^;
@@ -104,7 +104,7 @@ connect 'localhost:/tmp/17.fdb' user us password 'pas';
104104
execute procedure p(1);
105105

106106

107-
Example 4. It's enought to grant only INSERT privilege to user US for table TR.
107+
Example 4. It's enough to grant only INSERT privilege to user US for table TR.
108108
In case of INVOKER it will require also INSERT for table T to user US.
109109

110110
create table tr (i integer);
@@ -142,7 +142,7 @@ connect 'localhost:/tmp/29.fdb' user us password 'pas';
142142
insert into tr values(2);
143143

144144

145-
Example 5. It's enought to grant only EXECUTE privilege to user US for package PK.
145+
Example 5. It's enough to grant only EXECUTE privilege to user US for package PK.
146146
In case of INVOKER it will require also INSERT for table T to user US.
147147

148148
create table t (i integer);

src/common/classes/Switches.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class Switches
8686
void activate(const int in_sw);
8787

8888
// Checks if an item by key exists in a list of strings that represent the set of command-line
89-
// arguments. This is more eficient than finding the key for each parameter and then checking
89+
// arguments. This is more efficient than finding the key for each parameter and then checking
9090
// if it's the one we want (we reduce loop from Nkeys*Nargs to Nkeys+Nargs in the worst case).
9191
// It throws system_call_failed if the key is not found or it's negative or zero.
9292
bool exists(const int in_sw, const char* const* argv, const int start, const int stop) const;

src/common/classes/array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ class Array : protected Storage
435435
return FB_ALIGN(data, alignL);
436436
}
437437

438-
// clear array and release dinamically allocated memory
438+
// clear array and release dynamically allocated memory
439439
void free()
440440
{
441441
clear();

src/common/common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ void GDS_breakpoint(int);
927927

928928
// ASF: Currently, all little-endian are FB_SWAP_DOUBLE and big-endian aren't.
929929
// AP: Define it for your hardware correctly in case your CPU do not follow mentioned rule.
930-
// The follwoing lines are kept for reference only.
930+
// The following lines are kept for reference only.
931931
//#if defined(i386) || defined(I386) || defined(_M_IX86) || defined(AMD64) || defined(ARM) || defined(MIPSEL) || defined(DARWIN64) || defined(IA64)
932932
//#define FB_SWAP_DOUBLE 1
933933
//#elif defined(sparc) || defined(PowerPC) || defined(PPC) || defined(__ppc__) || defined(HPUX) || defined(MIPS) || defined(__ppc64__)

src/dsql/AggNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ bool AggNode::dsqlAggregate2Finder(Aggregate2Finder& visitor)
207207
if (!fieldFinder.getField())
208208
{
209209
// For example COUNT(*) is always same scope_level (node->nod_count = 0)
210-
// Normaly COUNT(*) is the only way to come here but something stupid
210+
// Normally COUNT(*) is the only way to come here but something stupid
211211
// as SUM(5) is also possible.
212212
// If currentScopeLevelEqual is false scopeLevel is always higher
213213
switch (visitor.matchType)

0 commit comments

Comments
 (0)