aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-08-23 20:48:29 +0000
committerdrh <drh@noemail.net>2015-08-23 20:48:29 +0000
commite792b5b4206a50fcd3ba96cc653329e9f27dc9bc (patch)
tree33bb3211682ca860b0cd7e4bdde2608875b50448 /src/expr.c
parentc3722b2103f104a7d511c9fe4a831fb81c15c06c (diff)
downloadsqlite-e792b5b4206a50fcd3ba96cc653329e9f27dc9bc.tar.gz
sqlite-e792b5b4206a50fcd3ba96cc653329e9f27dc9bc.zip
Fix a comment typo on sqlite3ExprAlloc(). No code changes.
FossilOrigin-Name: 518d6220a12fb1289f699ef0821e6adfcd286ed0
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index 1062733cb..04cd36ea7 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -433,7 +433,7 @@ void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){
** is responsible for making sure the node eventually gets freed.
**
** If dequote is true, then the token (if it exists) is dequoted.
-** If dequote is false, no dequoting is performance. The deQuote
+** If dequote is false, no dequoting is performed. The deQuote
** parameter is ignored if pToken is NULL or if the token does not
** appear to be quoted. If the quotes were of the form "..." (double-quotes)
** then the EP_DblQuoted flag is set on the expression node.