aboutsummaryrefslogtreecommitdiff
path: root/src/func.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-06-21 18:32:11 +0000
committermistachkin <mistachkin@noemail.net>2013-06-21 18:32:11 +0000
commitf5fe3ae9e6ec813a0f015c990ddac7349a933467 (patch)
treefe707c5648260e826cb61bd85e9f08501ff2ca4c /src/func.c
parent1654256ac892447558ff0587de76d5b53ac2b6f5 (diff)
parentb01e5b59a2e471d468e1854ef4de4b8f54f3bd6c (diff)
downloadsqlite-f5fe3ae9e6ec813a0f015c990ddac7349a933467.tar.gz
sqlite-f5fe3ae9e6ec813a0f015c990ddac7349a933467.zip
Merge updates from trunk.
FossilOrigin-Name: fa2a91e6c631864846484d13cffdc51856953cd1
Diffstat (limited to 'src/func.c')
-rw-r--r--src/func.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/func.c b/src/func.c
index 6db155dd2..9bee8576b 100644
--- a/src/func.c
+++ b/src/func.c
@@ -231,7 +231,7 @@ static void instrFunc(
**
** If p1 is negative, then we begin abs(p1) from the end of x[].
**
-** If p2 is negative, return the p2 characters preceeding p1.
+** If p2 is negative, return the p2 characters preceding p1.
*/
static void substrFunc(
sqlite3_context *context,
@@ -890,10 +890,6 @@ static const char hexdigits[] = {
};
/*
-** EXPERIMENTAL - This is not an official function. The interface may
-** change. This function may disappear. Do not write code that depends
-** on this function.
-**
** Implementation of the QUOTE() function. This function takes a single
** argument. If the argument is numeric, the return value is the same as
** the argument. If the argument is NULL, the return value is the string
@@ -1210,7 +1206,7 @@ static void zeroblobFunc(
/*
** The replace() function. Three arguments are all strings: call
** them A, B, and C. The result is also a string which is derived
-** from A by replacing every occurance of B with C. The match
+** from A by replacing every occurrence of B with C. The match
** must be exact. Collating sequences are not used.
*/
static void replaceFunc(