From c609d17b0d1f4a0e4a952ad498cb71a19d5c1b47 Mon Sep 17 00:00:00 2001 From: "D. Richard Hipp" Date: Wed, 24 Jan 2018 11:29:42 +0000 Subject: [PATCH] Fix a formatting issue in sqlite3_prepare_v3() documentation. No changes to code. --- src/sqlite.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlite.h.in b/src/sqlite.h.in index ed1c24de4c..1a0164150b 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -3659,13 +3659,13 @@ int sqlite3_limit(sqlite3*, int id, int newVal); ** or [GLOB] operator or if the parameter is compared to an indexed column ** and the [SQLITE_ENABLE_STAT3] compile-time option is enabled. ** +** ** **

^sqlite3_prepare_v3() differs from sqlite3_prepare_v2() only in having ** the extra prepFlags parameter, which is a bit array consisting of zero or ** more of the [SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_*] flags. ^The ** sqlite3_prepare_v2() interface works exactly the same as ** sqlite3_prepare_v3() with a zero prepFlags parameter. -** */ int sqlite3_prepare( sqlite3 *db, /* Database handle */ -- 2.11.4.GIT