aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/remember.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-07-14 15:18:51 +0000
committerdrh <drh@noemail.net>2017-07-14 15:18:51 +0000
commit3eddffd8bbf02926fb1e7403954af3c187b13b9f (patch)
treeb5ed125e85a0a816bb907f2a10f4a7db06339ea4 /ext/misc/remember.c
parente83b847b75cc39bdb20268a5976b395adb68e9c4 (diff)
downloadsqlite-3eddffd8bbf02926fb1e7403954af3c187b13b9f.tar.gz
sqlite-3eddffd8bbf02926fb1e7403954af3c187b13b9f.zip
Fix a typo in the header comment to the remember extension. No code changes.
FossilOrigin-Name: 604b9664f4dd6e8d188b5c57407edbbe0639345f8d30bf2d19016f8324934840
Diffstat (limited to 'ext/misc/remember.c')
-rw-r--r--ext/misc/remember.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/remember.c b/ext/misc/remember.c
index 0306b1891..97efb6ae8 100644
--- a/ext/misc/remember.c
+++ b/ext/misc/remember.c
@@ -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