Skip to content

Commit 9b60259

Browse files
committed
Approximately 100 typo corrections spanning the whole tree, submitted via [forum:0db9827f0464bc33|forum post 0db9827f0464bc33] and individually audited and verified. Affects only code comments, innocuous test strings, error message text in tool (not library) code, and configure-level help text.
1 parent e3225c6 commit 9b60259

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+119
-119
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ later. The "tclextension-install" target and the test targets that follow
134134
all require TCL development libraries too. ("apt install tcl-dev"). It is
135135
helpful, but is not required, to install the SQLite TCL extension (the
136136
"tclextension-install" target) prior to running tests. The "releasetest"
137-
target has additional requiremenst, such as "valgrind".
137+
target has additional requirements, such as "valgrind".
138138

139139
On "make" command-lines, one can add "OPTIONS=..." to specify additional
140140
compile-time options over and above those set by ./configure. For example,

autoconf/tea/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SQLite that does not require first installing TCL and/or "tclsh".
2626
The canonical Makefile in the SQLite source tree provides more
2727
capabilities (such as the the ability to run test cases to ensure
2828
that the build worked) and is better maintained. The only
29-
downside of the canonical Makfile is that it requires a TCL
29+
downside of the canonical Makefile is that it requires a TCL
3030
installation. But if you are wanting to build the TCL extension for
3131
SQLite, then presumably you already have a TCL installation. So why
3232
not just use the more-capable and better-maintained canoncal Makefile?

autoconf/tea/configure.ac.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ TEA_ADD_TCL_SOURCES([])
9393
# The --with-system-sqlite causes the TCL bindings to SQLite to use
9494
# the system shared library for SQLite rather than statically linking
9595
# against its own private copy. This is dangerous and leads to
96-
# undersirable dependences and is not recommended.
96+
# undesirable dependences and is not recommended.
9797
# Patchs from rmax.
9898
#--------------------------------------------------------------------
9999
AC_ARG_WITH([system-sqlite],

autosetup/sqlite-config.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ proc sqlite-configure {buildMode configScript} {
149149
# Options for how to build the library
150150
build-modes {
151151
{*} {
152-
shared=1 => {Disable build of shared libary}
152+
shared=1 => {Disable build of shared library}
153153
static=1 => {Disable build of static library}
154154
}
155155
{canonical} {

contrib/sqlitecon.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ proc sqlitecon::Cut w {
567567
}
568568
}
569569

570-
# Do a paste opeation.
570+
# Do a paste operation.
571571
#
572572
proc sqlitecon::Paste w {
573573
if {[sqlitecon::canCut $w]==1} {

doc/jsonb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ happen if and when they are actually needed.
281281
A valid JSONB BLOB consists of a single JSON element. The element must
282282
exactly fill the BLOB. This one element is often a JSON object or array
283283
and those usually contain additional elements as its payload, but the
284-
element can be a primite value such a string, number, boolean, or null.
284+
element can be a primitive value such a string, number, boolean, or null.
285285

286286
When the built-in JSON functions are attempting to determine if a BLOB
287287
argument is a JSONB or just a random BLOB, they look at the header of

doc/vfs-shm.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The 5 states of an historical rollback lock as implemented by the
22
xLock, xUnlock, and xCheckReservedLock methods of the sqlite3_io_methods
3-
objec are:
3+
object are:
44

55
UNLOCKED
66
SHARED
@@ -58,7 +58,7 @@ The meanings of the various wal-index locking states is as follows:
5858

5959
A particular lock manager implementation may coalesce one or more of
6060
the wal-index locking states, though with a reduction in concurrency.
61-
For example, an implemention might implement only exclusive locking,
61+
For example, an implementation might implement only exclusive locking,
6262
in which case all states would be equivalent to CHECKPOINT, meaning that
6363
only one reader or one writer or one checkpointer could be active at a
6464
time. Or, an implementation might combine READ and READ_FULL into

doc/wal-lock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ facilitates transfer of OS priority between processes when a high priority
1212
process is blocked by a lower priority one.
1313

1414
Only read/write clients use blocking locks. Clients that have read-only access
15-
to the \*-shm file nevery use blocking locks.
15+
to the \*-shm file never use blocking locks.
1616

1717
Threads or processes that access a single database at a time never deadlock as
1818
a result of blocking database locks. But it is of course possible for threads

ext/expert/sqlite3expert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,7 @@ sqlite3expert *sqlite3_expert_new(sqlite3 *db, char **pzErrmsg){
20522052
sqlite3_set_authorizer(pNew->dbv, idxAuthCallback, (void*)pNew);
20532053
}
20542054

2055-
/* If an error has occurred, free the new object and reutrn NULL. Otherwise,
2055+
/* If an error has occurred, free the new object and return NULL. Otherwise,
20562056
** return the new sqlite3expert handle. */
20572057
if( rc!=SQLITE_OK ){
20582058
sqlite3_expert_destroy(pNew);

ext/fts3/README.syntax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<col> MATCH '(hello world) OR (simple example)'
147147

148148
matches documents that contain both "hello" and "world", and documents
149-
that contain both "simple" and "example". It is not possible to forumlate
149+
that contain both "simple" and "example". It is not possible to formulate
150150
such a query using the standard syntax.
151151

152152
2) Instead of separating tokens and phrases by whitespace, an AND operator
@@ -174,7 +174,7 @@
174174

175175
4) Unlike in the standard syntax, where the OR operator has a higher
176176
precedence than the implicit AND operator, when using the enhanced
177-
syntax implicit and explict AND operators have a higher precedence
177+
syntax implicit and explicit AND operators have a higher precedence
178178
than OR operators. Using the enhanced syntax, the following two
179179
queries are equivalent:
180180

0 commit comments

Comments
 (0)