aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-08-13 20:15:29 +0000
committerdrh <drh@noemail.net>2009-08-13 20:15:29 +0000
commit9e42f8ac1a132d19fbba1b5a8f1d66f4d36c71ca (patch)
tree1457410661ea30ae72dad4769ea867da89a7d676 /src
parentc4fa5315a579cb4e232875bfe0dc0630b7ee0c7b (diff)
downloadsqlite-9e42f8ac1a132d19fbba1b5a8f1d66f4d36c71ca.tar.gz
sqlite-9e42f8ac1a132d19fbba1b5a8f1d66f4d36c71ca.zip
Fix typos in comments used to generate documentation.
CVSTrac tickets #4028 and #4029. FossilOrigin-Name: 1fc73b9146ee8844c73fc6a545cd0c98ac4d472b
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.h.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 8e5f70350..87996dbd9 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -3475,10 +3475,11 @@ typedef void (*sqlite3_destructor_type)(void*);
** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that
** function as the destructor on the text or BLOB result when it has
** finished using that result.
-** If the 4th parameter to the sqlite3_result_text* interfaces or
+** If the 4th parameter to the sqlite3_result_text* interfaces or to
** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite
** assumes that the text or BLOB result is in constant space and does not
-** copy the it or call a destructor when it has finished using that result.
+** copy the content of the parameter nor call a destructor on the content
+** when it has finished using that result.
** If the 4th parameter to the sqlite3_result_text* interfaces
** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT
** then SQLite makes a copy of the result into space obtained from
@@ -4457,7 +4458,7 @@ typedef struct sqlite3_blob sqlite3_blob;
**
** Use the [sqlite3_blob_bytes()] interface to determine the size of
** the opened blob. The size of a blob may not be changed by this
-** underface. Use the [UPDATE] SQL command to change the size of a
+** interface. Use the [UPDATE] SQL command to change the size of a
** blob.
**
** The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces