diff options
author | drh <drh@noemail.net> | 2016-02-12 17:30:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-02-12 17:30:39 +0000 |
commit | aa622c1f4f2e066ff1d1f1b1701a6401bd3447de (patch) | |
tree | a01341aec093143476ce34c64e6511615902ac6a /src | |
parent | cd4235252674efa6183a34a409d024f02f247f38 (diff) | |
download | sqlite-aa622c1f4f2e066ff1d1f1b1701a6401bd3447de.tar.gz sqlite-aa622c1f4f2e066ff1d1f1b1701a6401bd3447de.zip |
Fix a documentation typo. No changes to code.
FossilOrigin-Name: d9c985878cf7c74a79ccdb9cf94a2d48fdde3e6f
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index fce396c0f..9e7222bd5 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -347,7 +347,7 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**); ** from [sqlite3_malloc()] and passed back through the 5th parameter. ** To avoid memory leaks, the application should invoke [sqlite3_free()] ** on error message strings returned through the 5th parameter of -** of sqlite3_exec() after the error message string is no longer needed. +** sqlite3_exec() after the error message string is no longer needed. ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to ** NULL before returning. |