diff options
author | mistachkin <mistachkin@noemail.net> | 2013-03-21 21:20:32 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2013-03-21 21:20:32 +0000 |
commit | 48864df97d4a09bb229b0a298bb458db31524432 (patch) | |
tree | fb1e71cea24aa612610e85d9b92a49ab8bd67f27 /src/expr.c | |
parent | 0e5fba790a07c2d3697b63a81d4e068be32dc707 (diff) | |
download | sqlite-48864df97d4a09bb229b0a298bb458db31524432.tar.gz sqlite-48864df97d4a09bb229b0a298bb458db31524432.zip |
Many spelling fixes in comments. No changes to code.
FossilOrigin-Name: 6f6e2d50941e444ebc83604daddcc034137a05b7
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index ed5451b1c..ae6a1dec1 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3542,7 +3542,7 @@ void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); - if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ + if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( NEVER(pExpr==0) ) return; /* No way this can happen */ op = pExpr->op; switch( op ){ @@ -3662,7 +3662,7 @@ void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); - if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ + if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( pExpr==0 ) return; /* The value of pExpr->op and op are related as follows: |