]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix comment typos in btreeInt.h.
authordrh <drh@noemail.net>
Fri, 16 Oct 2009 13:23:33 +0000 (13:23 +0000)
committerdrh <drh@noemail.net>
Fri, 16 Oct 2009 13:23:33 +0000 (13:23 +0000)
FossilOrigin-Name: 550566a75fc79e3662431ba493af853b522d8850

manifest
manifest.uuid
src/btreeInt.h

index 19154c87adc51b0dd9cb9091e4f982f3277008e1..0a9435d41e18a81421751a1f1f54d4c8b7d9fe82 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-C Version\s3.6.19\srelease\scandidate
-D 2009-10-14T11:33:55
+C Fix\scomment\stypos\sin\sbtreeInt.h.
+D 2009-10-16T13:23:33
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 4ca3f1dd6efa2075bcb27f4dc43eef749877740d
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -111,7 +111,7 @@ F src/bitvec.c ed215b95734045e58358c3b3e16448f8fe6a235a
 F src/btmutex.c 0f43a75bb5b8147b386e8e1c3e71ba734e3863b7
 F src/btree.c 9c425425784c5d569bc0309c22251698ba906451
 F src/btree.h 577448a890c2ab9b21e6ab74f073526184bceebe
-F src/btreeInt.h 1c86297e69380f6577e7ae67452597dd8d5c2705
+F src/btreeInt.h cce1c3360cd5549ffa79f981951dfae93118ad79
 F src/build.c 3c5762687d0554ebe8844dfaddb828fcc15fe16d
 F src/callback.c 10d237171472865f58fb07d515737238c9e06688
 F src/complete.c 5ad5c6cd4548211867c204c41a126d73a9fbcea0
@@ -760,14 +760,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P ac19dbc6a208be2313e47cbcc0b2a0d8d04bae4c
-R 989a9468e4db33fc4015d0bb3c927c8c
+P c1d499afc50d54b376945b4efb65c56c787a073d
+R cf7ba44c45be9336ed7c2a5c9b298530
 U drh
-Z c68f3421f3f8fb97175ced03120a9234
+Z 27563b519474558dd6b5547423b5bb90
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.6 (GNU/Linux)
 
-iD8DBQFK1bcmoxKgR168RlERAqQ5AJ9xUtHzhAMNU+bXzeO3SQg1Qu58qgCZARPR
-8o61exV/iSWvw1xrcHTiCMo=
-=4tvm
+iD8DBQFK2HPYoxKgR168RlERAkZuAJ92TotoUKoCIhNfm2FWCGunPPZHjQCfVF36
+HyFlyXF9kYuWkApFgboU+4c=
+=hlwq
 -----END PGP SIGNATURE-----
index bb516efbbc82f08cd1341203b5bd8144b5b4b28a..403801e475c00b844afd51fe691f589e4efa9174 100644 (file)
@@ -1 +1 @@
-c1d499afc50d54b376945b4efb65c56c787a073d
\ No newline at end of file
+550566a75fc79e3662431ba493af853b522d8850
\ No newline at end of file
index 239439b4ad9e38288ec252e0d373a14b64749195..a2559eeb544418e8bf191b15476c42663375d05d 100644 (file)
@@ -329,8 +329,8 @@ struct BtLock {
 ** this structure.
 **
 ** For some database files, the same underlying database cache might be 
-** shared between multiple connections.  In that case, each contection
-** has it own pointer to this object.  But each instance of this object
+** shared between multiple connections.  In that case, each connection
+** has it own instance of this object.  But each instance of this object
 ** points to the same BtShared object.  The database cache and the
 ** schema associated with the database file are all contained within
 ** the BtShared object.
@@ -471,7 +471,7 @@ struct CellInfo {
 ** The entry is identified by its MemPage and the index in
 ** MemPage.aCell[] of the entry.
 **
-** When a single database file can shared by two more database connections,
+** A single database file can shared by two more database connections,
 ** but cursors cannot be shared.  Each cursor is associated with a
 ** particular database connection identified BtCursor.pBtree.db.
 **