1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a typo in the documentation for the OP_OpenPseudo opcode.

FossilOrigin-Name: 9acfb0694059c80b2efc08a60232d4be91575c32
This commit is contained in:
drh
2010-02-15 15:17:05 +00:00
parent 1f4222f84c
commit 2d8d7cebe1
3 changed files with 19 additions and 9 deletions

View File

@@ -3119,7 +3119,7 @@ case OP_OpenEphemeral: {
** register P2. In other words, cursor P1 becomes an alias for the
** MEM_Blob content contained in register P2.
**
** A pseudo-table created by this opcode is used to hold the a single
** A pseudo-table created by this opcode is used to hold a single
** row output from the sorter so that the row can be decomposed into
** individual columns using the OP_Column opcode. The OP_Column opcode
** is the only cursor opcode that works with a pseudo-table.