Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2365bac

Browse files
author
drh
committed
Fix documentation typos. No changes to code.
FossilOrigin-Name: 7caeb09c52bde4649b02b339f611c8e30f6d1c68
1 parent 2bea7cd commit 2365bac

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

manifest

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
C Fix\sharmless\scompiler\swarnings\sfrom\sclang\sscan-build.
2-
D 2013-11-18T11:20:50.241
1+
C Fix\sdocumentation\stypos.\s\sNo\schanges\sto\scode.
2+
D 2013-11-18T18:48:50.010
33
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
44
F Makefile.in 8a07bebafbfda0eb67728f4bd15a36201662d1a1
55
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -221,7 +221,7 @@ F src/resolve.c 6fcceeb653a0020b14491975d567c989e794d408
221221
F src/rowset.c 64655f1a627c9c212d9ab497899e7424a34222e0
222222
F src/select.c 253cb683e4a05b0b56b0f9c816f3c4a4e5575ebb
223223
F src/shell.c 849ee96c952d20e504d417e42a06acc5ca94ef17
224-
F src/sqlite.h.in 4dedcab5b32358bf7a596badffe7363be1f1a82d
224+
F src/sqlite.h.in a5dc058a909d9f14470bad9329d9e9303020ea4e
225225
F src/sqlite3.rc 11094cc6a157a028b301a9f06b3d03089ea37c3e
226226
F src/sqlite3ext.h 886f5a34de171002ad46fae8c36a7d8051c190fc
227227
F src/sqliteInt.h 03b91c6bceccd7718473f3d790abcb8d5c2b1bf1
@@ -1140,7 +1140,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
11401140
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
11411141
F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
11421142
F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
1143-
P 9c8d6856253f8da06b2cb5dc6bd89b6952fa03ed
1144-
R c9f2a197b3482dc9e1f22f87445d00db
1143+
P 8d002740bffca2a76d2dfbc1a67293d34f9de9ba
1144+
R d98b977ab05ba38a226703beb7c26537
11451145
U drh
1146-
Z 2979703407de49dd5b579d61d89bb322
1146+
Z c53e0578e3a1f9608c085ee4cd6a5e4a

manifest.uuid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8d002740bffca2a76d2dfbc1a67293d34f9de9ba
1+
7caeb09c52bde4649b02b339f611c8e30f6d1c68

src/sqlite.h.in

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**);
365365
** <ul>
366366
** <li> The application must insure that the 1st parameter to sqlite3_exec()
367367
** is a valid and open [database connection].
368-
** <li> The application must not close [database connection] specified by
368+
** <li> The application must not close the [database connection] specified by
369369
** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
370370
** <li> The application must not modify the SQL statement text passed into
371371
** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
@@ -442,7 +442,7 @@ int sqlite3_exec(
442442
** [sqlite3_extended_result_codes()] API.
443443
**
444444
** Some of the available extended result codes are listed here.
445-
** One may expect the number of extended result codes will be expand
445+
** One may expect the number of extended result codes will increase
446446
** over time. Software that uses extended result codes should expect
447447
** to see new result codes in future releases of SQLite.
448448
**
@@ -1380,7 +1380,7 @@ int sqlite3_db_config(sqlite3*, int op, ...);
13801380
** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
13811381
** that causes the corresponding memory allocation to fail.
13821382
**
1383-
** The xInit method initializes the memory allocator. (For example,
1383+
** The xInit method initializes the memory allocator. For example,
13841384
** it might allocate any require mutexes or initialize internal data
13851385
** structures. The xShutdown method is invoked (indirectly) by
13861386
** [sqlite3_shutdown()] and should deallocate any resources acquired
@@ -3106,7 +3106,6 @@ int sqlite3_limit(sqlite3*, int id, int newVal);
31063106
** choice of query plan if the parameter is the left-hand side of a [LIKE]
31073107
** or [GLOB] operator or if the parameter is compared to an indexed column
31083108
** and the [SQLITE_ENABLE_STAT3] compile-time option is enabled.
3109-
** the
31103109
** </li>
31113110
** </ol>
31123111
*/
@@ -3836,7 +3835,7 @@ int sqlite3_data_count(sqlite3_stmt *pStmt);
38363835
** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
38373836
** [sqlite3_finalize()] is called. ^The memory space used to hold strings
38383837
** and BLOBs is freed automatically. Do <b>not</b> pass the pointers returned
3839-
** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
3838+
** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
38403839
** [sqlite3_free()].
38413840
**
38423841
** ^(If a memory allocation error occurs during the evaluation of any
@@ -4914,8 +4913,8 @@ int sqlite3_release_memory(int);
49144913
**
49154914
** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap
49164915
** memory as possible from database connection D. Unlike the
4917-
** [sqlite3_release_memory()] interface, this interface is effect even
4918-
** when then [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is
4916+
** [sqlite3_release_memory()] interface, this interface is in effect even
4917+
** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is
49194918
** omitted.
49204919
**
49214920
** See also: [sqlite3_release_memory()]

0 commit comments

Comments
 (0)