aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/normalize.c
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2025-02-27 21:17:55 +0000
committerstephan <stephan@noemail.net>2025-02-27 21:17:55 +0000
commitda5f81387843f92652128087a8f8ecef0b79461d (patch)
tree5eb3e5a952b970f9999c70fe9d79d4c856ecbd31 /ext/misc/normalize.c
parent3398441bfcb368cbc7b0068afb366287ed703740 (diff)
downloadsqlite-da5f81387843f92652128087a8f8ecef0b79461d.tar.gz
sqlite-da5f81387843f92652128087a8f8ecef0b79461d.zip
Approximately 100 typo corrections spanning the whole tree, submitted via [forum:0db9827f0464bc33|forum post 0db9827f0464bc33] and individually audited and verified. Affects only code comments, innocuous test strings, error message text in tool (not library) code, and configure-level help text.
FossilOrigin-Name: f50c21484d3cac73589da0376c423de39ae8b842218105786c5aa3726e4dcaed
Diffstat (limited to 'ext/misc/normalize.c')
-rw-r--r--ext/misc/normalize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/normalize.c b/ext/misc/normalize.c
index 08d7733b9..800e12911 100644
--- a/ext/misc/normalize.c
+++ b/ext/misc/normalize.c
@@ -286,7 +286,7 @@ static const unsigned char sqlite3CtypeMap[256] = {
#define TK_VARIABLE TK_LITERAL
#define TK_BLOB TK_LITERAL
-/* Disable nuisence warnings about case fall-through */
+/* Disable nuisance warnings about case fall-through */
#if !defined(deliberate_fall_through) && defined(__GCC__) && __GCC__>=7
# define deliberate_fall_through __attribute__((fallthrough));
#else