aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-02-19 22:43:58 +0000
committerdrh <drh@noemail.net>2002-02-19 22:43:58 +0000
commit77c679c0969a6190a041c2712d1bf43c5626b4ef (patch)
tree3138c7df955512bd670fedddef8e74079cf7898f /src
parent5cf8e8c7fa103aea2f10fc36a77cd4419c56bc5d (diff)
downloadsqlite-77c679c0969a6190a041c2712d1bf43c5626b4ef.tar.gz
sqlite-77c679c0969a6190a041c2712d1bf43c5626b4ef.zip
Fix a comment. (CVS 384)
FossilOrigin-Name: 953928537c350e6c9df157553114c6d9d44712d5
Diffstat (limited to 'src')
-rw-r--r--src/btree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/btree.c b/src/btree.c
index b47d83830..ddf9edf19 100644
--- a/src/btree.c
+++ b/src/btree.c
@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
-** $Id: btree.c,v 1.54 2002/02/19 15:00:07 drh Exp $
+** $Id: btree.c,v 1.55 2002/02/19 22:43:59 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -1308,7 +1308,7 @@ static int moveToLeftmost(BtCursor *pCur){
/* Move the cursor to the first entry in the table. Return SQLITE_OK
** on success. Set *pRes to 0 if the cursor actually points to something
-** or set *pRes to 1 if the table is empty and there is no first element.
+** or set *pRes to 1 if the table is empty.
*/
int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
int rc;
@@ -1327,7 +1327,7 @@ int sqliteBtreeFirst(BtCursor *pCur, int *pRes){
/* Move the cursor to the last entry in the table. Return SQLITE_OK
** on success. Set *pRes to 0 if the cursor actually points to something
-** or set *pRes to 1 if the table is empty and there is no first element.
+** or set *pRes to 1 if the table is empty.
*/
int sqliteBtreeLast(BtCursor *pCur, int *pRes){
int rc;