Skip to content

Commit f0c402b

Browse files
authored
Fix spelling (#8476)
1 parent c0a6018 commit f0c402b

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ if test "x$VCPKG_TRIPLET" != "x" ; then
9898
AC_SUBST(VCPKG_INSTALLED)
9999
fi
100100

101-
dnl EKU: set appropiate defaults for each platform
101+
dnl EKU: set appropriate defaults for each platform
102102
dnl EDITLINE_FLG : support fancy command line editing in isql
103103
dnl SHRLIB_EXT : suffix of shared library files
104104

doc/README.incompatibilities.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SQL SYNTAX
2323
--------------------------
2424

2525
* A number of new reserved keywords are introduced. The full list is available
26-
here: /doc/sql.extentions/README.keywords. Please ensure your DSQL
26+
here: /doc/sql.extensions/README.keywords. Please ensure your DSQL
2727
statements and procedure/trigger sources don't contain those keywords as
2828
identifiers. Otherwise, you'll need to either use them quoted (in Dialect 3
2929
only) or rename them.

doc/sql.extensions/README.keywords

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SQL keywords introduced in different server versions
44

55
Deviations from the standard:
66
* : keyword does not exist in the SQL:2016 specification and should be
7-
considered a non-standard language extention.
7+
considered a non-standard language extension.
88
(1) : reserved word in SQL:2016, non-reserved in Firebird
99
(2) : non-reserved word in SQL:2016, reserved word in Firebird
1010

src/common/os/mod_loader.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
facilities provided by the host operating system. The class provides
3636
functions to determine if the file at a given path is a loadable module,
3737
to load that module, and to modify the filename in a way that is
38-
appropiate to the host computer.
38+
appropriate to the host computer.
3939
4040
All implementations of this interface are expected to provide definitions
4141
for the 3 static functions in the ModuleLoader class, and provide a
@@ -55,7 +55,7 @@ class ModuleLoader
5555
class Module
5656
{
5757
public:
58-
/** findSymbol searchs through the module after it has been loaded into
58+
/** findSymbol searches through the module after it has been loaded into
5959
memory, and returns a pointer to that symbol's location in memory.
6060
If the symbol can't be found or doesn't exist the function returns
6161
NULL.
@@ -99,12 +99,12 @@ class ModuleLoader
9999
static Module* loadModule(ISC_STATUS* status, const Firebird::PathName&);
100100

101101
/** doctorModuleExtension modifies the given path name to add the platform
102-
specific module extention. This allows the user to provide the root name
103-
of the file, and the code to append the correct extention regardless of the
102+
specific module extension. This allows the user to provide the root name
103+
of the file, and the code to append the correct extension regardless of the
104104
host operating system. This process can take several iterations before final
105105
form of name is reached.
106106
This function is typically called after a failed attempt
107-
to load the module without the extention.
107+
to load the module without the extension.
108108
Initialize step to zero before use.
109109
Return false if no name modification can be done anymore.
110110
**/

src/gpre/exp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ static gpre_nod* par_array(gpre_req* request, gpre_fld* field, bool subscript_fl
11251125
gpre_nod* index_node = MSC_unary(nod_index, node);
11261126

11271127
// Languages which can't handle negative or non-positive bounds need to
1128-
// be accomodated with normalization of the indices.
1128+
// be accommodated with normalization of the indices.
11291129

11301130
switch (gpreGlob.sw_language)
11311131
{
@@ -1142,7 +1142,7 @@ static gpre_nod* par_array(gpre_req* request, gpre_fld* field, bool subscript_fl
11421142

11431143
// Error checking of constants being out of range will be here in the future.
11441144

1145-
// Good ole Fortran's column major order needs to be accomodated.
1145+
// Good ole Fortran's column major order needs to be accommodated.
11461146

11471147
if (gpreGlob.sw_language == lang_fortran)
11481148
array_node->nod_arg[fortran_adjustment - i] = index_node;

src/jrd/cch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4241,7 +4241,7 @@ static ULONG memory_init(thread_db* tdbb, BufferControl* bcb, ULONG number)
42414241
{
42424242
if (!memory)
42434243
{
4244-
// Allocate memory block big enough to accomodate BufferDesc's, Lock's and page buffers.
4244+
// Allocate memory block big enough to accommodate BufferDesc's, Lock's and page buffers.
42454245

42464246
ULONG to_alloc = number;
42474247

src/jrd/dpm.epp

+3-3
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ bool DPM_chain( thread_db* tdbb, record_param* org_rpb, record_param* new_rpb)
434434
if (fill < 0)
435435
fill = 0;
436436

437-
// Accomodate max record size i.e. 64K
437+
// Accommodate max record size i.e. 64K
438438
const SLONG length = ROUNDUP(header_size + size + fill, ODS_ALIGNMENT);
439439

440440
// Find space on page and open slot
@@ -2199,7 +2199,7 @@ void DPM_store( thread_db* tdbb, record_param* rpb, PageStack& stack, const Jrd:
21992199
if (fill < 0)
22002200
fill = 0;
22012201

2202-
// Accomodate max record size i.e. 64K
2202+
// Accommodate max record size i.e. 64K
22032203
const SLONG length = header_size + size + fill;
22042204
rhd* header = locate_space(tdbb, rpb, (SSHORT) length, stack, NULL, type);
22052205

@@ -2428,7 +2428,7 @@ void DPM_update( thread_db* tdbb, record_param* rpb, PageStack* stack, const jrd
24282428
if (fill < 0)
24292429
fill = 0;
24302430

2431-
// Accomodate max record size i.e. 64K
2431+
// Accommodate max record size i.e. 64K
24322432
const SLONG length = ROUNDUP(header_size + size + fill, ODS_ALIGNMENT);
24332433
const USHORT slot = rpb->rpb_line;
24342434

src/yvalve/gds.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4325,7 +4325,7 @@ class InitPrefix
43254325
prefix.copyTo(fb_prefix_val, sizeof(fb_prefix_val));
43264326
fb_prefix = fb_prefix_val;
43274327

4328-
// Find appropiate temp directory
4328+
// Find appropriate temp directory
43294329
Firebird::PathName tempDir;
43304330
if (!fb_utils::readenv(FB_TMP_ENV, tempDir))
43314331
{

0 commit comments

Comments
 (0)