diff options
author | drh <drh@noemail.net> | 2008-10-02 14:33:56 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-10-02 14:33:56 +0000 |
commit | 25ef8f1c2c2509eb2d074e29aa3026e54b495ec7 (patch) | |
tree | 4ae5198f84213acd33d019316d69ba514283c47e /src | |
parent | 41a05b7beea50d0d619f09afa5576e3491648463 (diff) | |
download | sqlite-25ef8f1c2c2509eb2d074e29aa3026e54b495ec7.tar.gz sqlite-25ef8f1c2c2509eb2d074e29aa3026e54b495ec7.zip |
Fix a typo that prevents the sqlite3_sql() interface from appearing
in the official documentation. (CVS 5761)
FossilOrigin-Name: b46814b202f4cc355b925551c90ea811f3f9e44a
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index b44a6dbb0..69748f00d 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -30,7 +30,7 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite.h.in,v 1.399 2008/09/22 17:54:46 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.400 2008/10/02 14:33:57 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -2844,7 +2844,7 @@ int sqlite3_prepare16_v2( ); /* -** CAPIREF: Retrieving Statement SQL {H13100} <H13000> +** CAPI3REF: Retrieving Statement SQL {H13100} <H13000> ** ** This interface can be used to retrieve a saved copy of the original ** SQL text used to create a [prepared statement] if that statement was |