diff options
author | drh <drh@noemail.net> | 2010-12-17 00:59:59 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-12-17 00:59:59 +0000 |
commit | cd2f58b3741d744b68803ec79a923e4df8bb2d04 (patch) | |
tree | 023b1a71b1859da896f69a6a2fd73e246ffe2a65 /src | |
parent | 230bd63011f6e6adbaa7b4940ed565efc2218c0e (diff) | |
download | sqlite-cd2f58b3741d744b68803ec79a923e4df8bb2d04.tar.gz sqlite-cd2f58b3741d744b68803ec79a923e4df8bb2d04.zip |
Fix minor typos in the sqlite3_backup documentation.
FossilOrigin-Name: df430be59d0766a34a94ab85fec9aa3c3baeb740
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 18372c169..84999d4b1 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -5815,11 +5815,11 @@ typedef struct sqlite3_backup sqlite3_backup; ** sqlite3_backup_init(D,N,S,M) identify the [database connection] ** and database name of the source database, respectively. ** ^The source and destination [database connections] (parameters S and D) -** must be different or else sqlite3_backup_init(D,N,S,M) will file with +** must be different or else sqlite3_backup_init(D,N,S,M) will fail with ** an error. ** ** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is -** returned and an error code and error message are store3d in the +** returned and an error code and error message are stored in the ** destination [database connection] D. ** ^The error code and message for the failed call to sqlite3_backup_init() ** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or @@ -5850,7 +5850,7 @@ typedef struct sqlite3_backup sqlite3_backup; ** <li> the destination database was opened read-only, or ** <li> the destination database is using write-ahead-log journaling ** and the destination and source page sizes differ, or -** <li> The destination database is an in-memory database and the +** <li> the destination database is an in-memory database and the ** destination and source page sizes differ. ** </ol>)^ ** |