Skip to content

Commit c263c3d

Browse files
authored
Fix spelling (#8479)
1 parent 587ace2 commit c263c3d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

builds/posix/vers.sh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Contributor(s): ______________________________________.
2222
#
2323

24-
# Different echo versions interprete backslash escapes differently.
24+
# Different echo versions interpret backslash escapes differently.
2525
# To avoid related problems lets have:
2626
TAB=" "
2727

doc/sql.extensions/README.execute_statement2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Syntax and notes :
104104
- Exceptions handling
105105
a) if ON EXTERNAL DATA SOURCE clause is present then error information is interpreted
106106
by the Firebird itself and wrapped into Firebird own error (isc_eds_connection or
107-
isc_eds_statement). This is necessary as in general user application can't interprete
107+
isc_eds_statement). This is necessary as in general user application can't interpret
108108
or understand error codes provided by (unknown) external data source. Text of
109109
interpreted remote error contains both error codes and corresponding messages.
110110

doc/sql.extensions/README.time_zone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Firebird uses the [IANA time zone database](http://www.iana.org/time-zones) thro
428428

429429
When a Firebird version is released it's released with the most up-to-date time zone database but with the time it may become outdated.
430430

431-
An updated database can be found in [this Firebird's github page](https://github.com/FirebirdSQL/firebird/tree/master/extern/icu/tzdata). `le.zip` stands for little-endian and is the necessary file for most computer architectures (Intel/AMD compatible x86 or x64). `be.zip` stands for big-endian architectures.
431+
An updated database can be found in [this Firebird's GitHub page](https://github.com/FirebirdSQL/firebird/tree/master/extern/icu/tzdata). `le.zip` stands for little-endian and is the necessary file for most computer architectures (Intel/AMD compatible x86 or x64). `be.zip` stands for big-endian architectures.
432432

433433
The content of the zip file must be extracted in the `tzdata` subdirectory of Firebird's root, overwriting the others `*.res` files of the old database.
434434

src/common/os/win32/mod_loader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ ModuleLoader::Module* ModuleLoader::loadModule(ISC_STATUS* status, const PathNam
210210
{
211211
ContextActivator ctx;
212212

213-
// supress error message box if it is not done yet
213+
// suppress error message box if it is not done yet
214214
const UINT oldErrorMode =
215215
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX);
216216

src/gpre/par.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
//
3434
// TMN (Mike Nordell) 11.APR.2001 - Reduce compiler warnings
3535
// TMN (Mike Nordell) APR-MAY.2001 - Conversion to C++
36-
// SWB (Stepen Boyd) 2007/03/21 - Supressed parsing of QLI keywords if -noqli
36+
// SWB (Stepen Boyd) 2007/03/21 - Suppressed parsing of QLI keywords if -noqli
3737
// switch given on the command line.
3838
//
3939
//

src/isql/extract.epp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ int EXTRACT_list_table(const SCHAR* relation_name,
254254
* relation_name -- Name of table to investigate
255255
* new_name -- Name of a new name for a replacement table
256256
* domain_flag -- extract needed domains before the table
257-
* default_char_set_id -- character set def to supress
257+
* default_char_set_id -- character set def to suppress
258258
*
259259
**************************************/
260260
/**************************************
@@ -2261,7 +2261,7 @@ static void list_domain_table(const SCHAR* table_name, SSHORT default_char_set_i
22612261
* for the named table
22622262
*
22632263
* Parameters: table_name == only extract domains for this table
2264-
* default_char_set_id -- character set def to supress
2264+
* default_char_set_id -- character set def to suppress
22652265
*
22662266
**************************************/
22672267
bool first = true;
@@ -2384,7 +2384,7 @@ static void list_domains(SSHORT default_char_set_id)
23842384
* List domains
23852385
*
23862386
* Parameters:
2387-
* default_char_set_id -- character set def to supress
2387+
* default_char_set_id -- character set def to suppress
23882388
*
23892389
**************************************/
23902390
bool first = true;

src/isql/isql.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ void ISQL_get_character_sets(SSHORT char_set_id, SSHORT collation,
15151515
break;
15161516

15171517
case Get::BOTH:
1518-
// If they both are default - supress output completely
1518+
// If they both are default - suppress output completely
15191519
if (!charsetIsDefault || !collationIsDefault)
15201520
{
15211521
if (collationIsDefault) // Suppress collation only

src/jrd/jrd.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ JAttachment* JProvider::internalAttach(CheckStatusWrapper* user_status, const ch
17091709
#ifdef WIN_NT
17101710
guardDbInit.enter(); // Required to correctly expand name of just created database
17111711

1712-
// Need to re-expand under lock to take into an account file existance (or not)
1712+
// Need to re-expand under lock to take into an account file existence (or not)
17131713
is_alias = expandDatabaseName(org_filename, expanded_name, &config);
17141714
if (!is_alias)
17151715
{
@@ -2931,7 +2931,7 @@ JAttachment* JProvider::createDatabase(CheckStatusWrapper* user_status, const ch
29312931
#ifdef WIN_NT
29322932
guardDbInit.enter(); // Required to correctly expand name of just created database
29332933

2934-
// Need to re-expand under lock to take into an account file existance (or not)
2934+
// Need to re-expand under lock to take into an account file existence (or not)
29352935
is_alias = expandDatabaseName(org_filename, expanded_name, &config);
29362936
if (!is_alias)
29372937
{

src/jrd/validation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@ Validation::RTN Validation::walk_data_page(jrd_rel* relation, ULONG page_number,
17791779
PBM_SET(pool, &vdr_backversion_pages, page_number);
17801780
}
17811781

1782-
// Record the existance of a primary version of a record
1782+
// Record the existence of a primary version of a record
17831783

17841784
if ((vdr_flags & VDR_records) &&
17851785
!(header->rhd_flags & (rhd_chain | rhd_fragment | rhd_blob)))
@@ -2246,7 +2246,7 @@ Validation::RTN Validation::walk_index(jrd_rel* relation, index_root_page* root_
22462246
if (node.isEndBucket || node.isEndLevel)
22472247
break;
22482248

2249-
// Record the existance of a primary version of a record
2249+
// Record the existence of a primary version of a record
22502250
if (leafPage && (vdr_flags & VDR_records))
22512251
RBM_SET(vdr_tdbb->getDefaultPool(), &vdr_idx_records, node.recordNumber.getValue());
22522252

0 commit comments

Comments
 (0)