]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix minor typos in the sqlite3_backup documentation.
authordrh <drh@noemail.net>
Fri, 17 Dec 2010 00:59:59 +0000 (00:59 +0000)
committerdrh <drh@noemail.net>
Fri, 17 Dec 2010 00:59:59 +0000 (00:59 +0000)
FossilOrigin-Name: df430be59d0766a34a94ab85fec9aa3c3baeb740

manifest
manifest.uuid
src/sqlite.h.in

index 57ea46afae51c0f7f9d1436a4c0112b8caa5beaf..1b7eff98ab8c0daab7a9949c6ef21e016487298c 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-C Improvements\sto\sthe\sdocumentation\sfor\ssqlite3_backup.\s\sNo\scode\schanges.
-D 2010-12-16T20:35:09
+C Fix\sminor\stypos\sin\sthe\ssqlite3_backup\sdocumentation.
+D 2010-12-17T01:00:00
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 4547616ad2286053af6ccccefa242dc925e49bf0
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -179,7 +179,7 @@ F src/resolve.c 1c0f32b64f8e3f555fe1f732f9d6f501a7f05706
 F src/rowset.c 69afa95a97c524ba6faf3805e717b5b7ae85a697
 F src/select.c 8a7ba246b0b4bb45df7fbc52681728a0e3deaaa7
 F src/shell.c ee5905fef7bf8dfceaf31ee32db92a250c5acab4
-F src/sqlite.h.in 10703eabbc046241562e351db01867bfd6ee9511
+F src/sqlite.h.in 83fed95ea6acbac51c48eba5bd93933f3795ee91
 F src/sqlite3ext.h c90bd5507099f62043832d73f6425d8d5c5da754
 F src/sqliteInt.h b96d5ddb8b419a2ed7cf69a7778b53872d73e8a7
 F src/sqliteLimit.h a17dcd3fb775d63b64a43a55c54cb282f9726f44
@@ -897,14 +897,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P 70a3d81742fcd481f83ccc8f7ff6af58bc29c4fa
-R 9519e6fa67e1334e4afcff3dd84c9457
+P f83609f4703b5e74a91bca071a4ac2843189f463
+R 4fe65842543b054691673679e78a0692
 U drh
-Z 293fd4f88c8d8f9ba51254632b1b2210
+Z 4e539ffc5f953aea785c9c0d27788fb5
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.6 (GNU/Linux)
 
-iD8DBQFNCngBoxKgR168RlERAsAFAJ4iiuLm7vklx4CB6wSiyiEwn4CjxgCeOsUX
-lnxUFl9L9846F0vUhGk6SN0=
-=SOu3
+iD8DBQFNCrYToxKgR168RlERAvmlAJ43BlcnUUZrpZ/M23vbx+daRFmY/wCfaT9g
+E7S6EnO/SOTNHOaDSvM60FI=
+=7L0d
 -----END PGP SIGNATURE-----
index 7c3872905266a06a6f442f0c07df53c30c3ee646..26559b48d7bd083eef8edfc1e3277865f29d5a6f 100644 (file)
@@ -1 +1 @@
-f83609f4703b5e74a91bca071a4ac2843189f463
\ No newline at end of file
+df430be59d0766a34a94ab85fec9aa3c3baeb740
\ No newline at end of file
index 18372c16923d7dddeeb650b5a2306db9dd5db20b..84999d4b1ad223e547599aef0e83bf42ea187572 100644 (file)
@@ -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>)^
 **