aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-01-13 16:10:58 +0000
committerdrh <drh@noemail.net>2011-01-13 16:10:58 +0000
commit5b3696e8a6606e5c8ae232ecd9d5db717b55c80d (patch)
treef0dd3101e0a376b672c2a232187bbe71af5da8f5 /src
parenta8ab60c6488b775adf2d5ea7d12ed35cac7e257e (diff)
downloadsqlite-5b3696e8a6606e5c8ae232ecd9d5db717b55c80d.tar.gz
sqlite-5b3696e8a6606e5c8ae232ecd9d5db717b55c80d.zip
Fix a typo on the sqlite3_open_v2() documentation.
FossilOrigin-Name: b0add45abc9929c5b8d1124879bc3e8acf2ab7c7
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 0774493ed..79a1e0810 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -2311,7 +2311,7 @@ void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
** case the database must already exist, otherwise an error is returned.</dd>)^
**
** ^(<dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt>
-** <dd>The database is opened for reading and writing, and is creates it if
+** <dd>The database is opened for reading and writing, and is created if
** it does not already exist. This is the behavior that is always used for
** sqlite3_open() and sqlite3_open16().</dd>)^
** </dl>