diff options
author | mistachkin <mistachkin@noemail.net> | 2020-12-22 19:57:53 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2020-12-22 19:57:53 +0000 |
commit | 9a60e716f7092c9b52adfcb4ef03d76fd1aa8d03 (patch) | |
tree | c96c17d3f854e3ff4752d5ef4bdb333bc9acaea2 /src/insert.c | |
parent | f39168e468af3b1d6b6d37efdcb081eced6724b2 (diff) | |
download | sqlite-9a60e716f7092c9b52adfcb4ef03d76fd1aa8d03.tar.gz sqlite-9a60e716f7092c9b52adfcb4ef03d76fd1aa8d03.zip |
Fix a couple spelling typos in comments.
FossilOrigin-Name: 907ddf86766ebdbe39bdc89543c1a7bbd65c710c9f3a3a4d796845b2c02b711b
Diffstat (limited to 'src/insert.c')
-rw-r--r-- | src/insert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert.c b/src/insert.c index 9913136db..bc8a7f5b2 100644 --- a/src/insert.c +++ b/src/insert.c @@ -1938,7 +1938,7 @@ void sqlite3GenerateConstraintChecks( ** the UNIQUE constraints have run. */ if( onError==OE_Replace /* IPK rule is REPLACE */ - && onError!=overrideError /* Rules for other contraints are different */ + && onError!=overrideError /* Rules for other constraints are different */ && pTab->pIndex /* There exist other constraints */ ){ ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1; |