aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2024-06-18 09:58:39 +0000
committerstephan <stephan@noemail.net>2024-06-18 09:58:39 +0000
commite9540e2881e2429c7030362e4197c7f3948862b7 (patch)
treedbf7d76f477ef1e921230a30900579d3f7f667b0 /src/sqliteInt.h
parentc7cbcfbbbd522c972527b92b9dfee63c82a97fbc (diff)
downloadsqlite-e9540e2881e2429c7030362e4197c7f3948862b7.tar.gz
sqlite-e9540e2881e2429c7030362e4197c7f3948862b7.zip
Internal doc typo fixes, as reported in the forum. No code changes.
FossilOrigin-Name: ea16b286b4344c1833ca3d17b6d315fb4ddcb99bcc232ff6444debeb634881f2
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 69aeadb34..736889868 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4122,7 +4122,7 @@ struct Returning {
};
/*
-** An objected used to accumulate the text of a string where we
+** An object used to accumulate the text of a string where we
** do not necessarily know how big the string will be in the end.
*/
struct sqlite3_str {
@@ -4136,7 +4136,7 @@ struct sqlite3_str {
};
#define SQLITE_PRINTF_INTERNAL 0x01 /* Internal-use-only converters allowed */
#define SQLITE_PRINTF_SQLFUNC 0x02 /* SQL function arguments to VXPrintf */
-#define SQLITE_PRINTF_MALLOCED 0x04 /* True if xText is allocated space */
+#define SQLITE_PRINTF_MALLOCED 0x04 /* True if zText is allocated space */
#define isMalloced(X) (((X)->printfFlags & SQLITE_PRINTF_MALLOCED)!=0)