diff options
author | drh <> | 2023-05-12 12:45:56 +0000 |
---|---|---|
committer | drh <> | 2023-05-12 12:45:56 +0000 |
commit | 61791c6f4c7188db804d4f4cd257f9e6c977415f (patch) | |
tree | fada207f2f827222c64cb817e615b6c966516a1e /src | |
parent | 6b429dc11bfdc02c500ff0543ebb16f5f09185df (diff) | |
download | sqlite-61791c6f4c7188db804d4f4cd257f9e6c977415f.tar.gz sqlite-61791c6f4c7188db804d4f4cd257f9e6c977415f.zip |
Fix harmless typos in comments.
FossilOrigin-Name: 607c3efbe0293d7c11a955a9f21e24fb9f7f1bb758e13e60f4ba0cc0ac8b900c
Diffstat (limited to 'src')
-rw-r--r-- | src/btreeInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btreeInt.h b/src/btreeInt.h index 35e6b6aea..6d3578422 100644 --- a/src/btreeInt.h +++ b/src/btreeInt.h @@ -556,7 +556,7 @@ struct BtCursor { #define BTCF_WriteFlag 0x01 /* True if a write cursor */ #define BTCF_ValidNKey 0x02 /* True if info.nKey is valid */ #define BTCF_ValidOvfl 0x04 /* True if aOverflow is valid */ -#define BTCF_AtLast 0x08 /* Cursor is pointing ot the last entry */ +#define BTCF_AtLast 0x08 /* Cursor is pointing to the last entry */ #define BTCF_Incrblob 0x10 /* True if an incremental I/O handle */ #define BTCF_Multiple 0x20 /* Maybe another cursor on the same btree */ #define BTCF_Pinned 0x40 /* Cursor is busy and cannot be moved */ |