From: drh Date: Fri, 17 Dec 2010 00:59:59 +0000 (+0000) Subject: Fix minor typos in the sqlite3_backup documentation. X-Git-Tag: version-3.7.5~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd2f58b3741d744b68803ec79a923e4df8bb2d04;p=thirdparty%2Fsqlite.git Fix minor typos in the sqlite3_backup documentation. FossilOrigin-Name: df430be59d0766a34a94ab85fec9aa3c3baeb740 --- diff --git a/manifest b/manifest index 57ea46afae..1b7eff98ab 100644 --- 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----- diff --git a/manifest.uuid b/manifest.uuid index 7c38729052..26559b48d7 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -f83609f4703b5e74a91bca071a4ac2843189f463 \ No newline at end of file +df430be59d0766a34a94ab85fec9aa3c3baeb740 \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 18372c1692..84999d4b1a 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; **
  • the destination database was opened read-only, or **
  • the destination database is using write-ahead-log journaling ** and the destination and source page sizes differ, or -**
  • The destination database is an in-memory database and the +**
  • the destination database is an in-memory database and the ** destination and source page sizes differ. ** )^ **