diff options
author | drh <drh@noemail.net> | 2018-05-31 19:00:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-05-31 19:00:20 +0000 |
commit | 8cdafc384ee0b865641eefb5ba1df5dc219da03d (patch) | |
tree | cb239a4e0de05b9bca7c3b004b0a96ed263f2881 /src | |
parent | fc232d6f65864d946565e1c8f988e4aa39cb8da1 (diff) | |
download | sqlite-8cdafc384ee0b865641eefb5ba1df5dc219da03d.tar.gz sqlite-8cdafc384ee0b865641eefb5ba1df5dc219da03d.zip |
Fix a harmless typo in a comment used to generate documentation.
FossilOrigin-Name: 5a2a88cb01ef4b299f9a5b2963f392a3bae90e8a7f84b190e67f86090f891e23
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 971553fc4..c1e25bf76 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -4749,7 +4749,7 @@ case OP_SorterData: { ** If the P1 cursor must be pointing to a valid row (not a NULL row) ** of a real table, not a pseudo-table. ** -** If P3!=0 then this opcode is allowed to make an ephermeral pointer +** If P3!=0 then this opcode is allowed to make an ephemeral pointer ** into the database page. That means that the content of the output ** register will be invalidated as soon as the cursor moves - including ** moves caused by other cursors that "save" the the current cursors |