diff options
author | larrybr <larrybr@noemail.net> | 2023-06-07 17:03:22 +0000 |
---|---|---|
committer | larrybr <larrybr@noemail.net> | 2023-06-07 17:03:22 +0000 |
commit | 55be21647e12dce5f45b5b361496337bf346c468 (patch) | |
tree | 161599efdc1ad251f1bf6a0258f445deaee91c8d /src/func.c | |
parent | bc91738e665a6d1d18917da69df3eccbfc6e92c4 (diff) | |
parent | c5a5a54c51cac6452a29e4a7761165c06cc9abc3 (diff) | |
download | sqlite-55be21647e12dce5f45b5b361496337bf346c468.tar.gz sqlite-55be21647e12dce5f45b5b361496337bf346c468.zip |
Fix straggler misspellings and tidy the custom dictionary. Also include pickups from [forum:/info/c61fb09afd|forum post c61fb09afd].
FossilOrigin-Name: 8c291d99946eb32b20b743921202f9c7cfb716268ff526817b27adbb7942e40b
Diffstat (limited to 'src/func.c')
-rw-r--r-- | src/func.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.c b/src/func.c index 1d47a24b8..14f485d4d 100644 --- a/src/func.c +++ b/src/func.c @@ -858,7 +858,7 @@ int sqlite3_like_count = 0; /* ** Implementation of the like() SQL function. This function implements -** the build-in LIKE operator. The first argument to the function is the +** the built-in LIKE operator. The first argument to the function is the ** pattern and the second argument is the string. So, the SQL statements: ** ** A LIKE B @@ -1244,7 +1244,7 @@ static int strContainsChar(const u8 *zStr, int nStr, u32 ch){ ** decoded and returned as a blob. ** ** If there is only a single argument, then it must consist only of an -** even number of hexadeximal digits. Otherwise, return NULL. +** even number of hexadecimal digits. Otherwise, return NULL. ** ** Or, if there is a second argument, then any character that appears in ** the second argument is also allowed to appear between pairs of hexadecimal |