1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a typo in the header comment to the remember extension. No code changes.

FossilOrigin-Name: 604b9664f4dd6e8d188b5c57407edbbe0639345f8d30bf2d19016f8324934840
This commit is contained in:
drh
2017-07-14 15:18:51 +00:00
parent e83b847b75
commit 3eddffd8bb
3 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@
** UPDATE counterTab SET cnt=remember(cnt,$PTR)+1 WHERE id=$ID
**
** Prepare the above statement once. Then to use it, bind the address
** of the output variable to $PTR (using sqlite3_binary_pointer()) and
** of the output variable to $PTR (using sqlite3_bind_pointer()) and
** bind the id of the counter to $ID and run the prepared statement.
**
** One can imagine doing similar things with floating-point values and