1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Fix a comment typo on sqlite3ExprAlloc(). No code changes.

FossilOrigin-Name: 518d6220a12fb1289f699ef0821e6adfcd286ed0
This commit is contained in:
drh
2015-08-23 20:48:29 +00:00
parent c3722b2103
commit e792b5b420
3 changed files with 8 additions and 8 deletions

View File

@@ -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.