diff options
author | drh <> | 2023-05-11 18:03:11 +0000 |
---|---|---|
committer | drh <> | 2023-05-11 18:03:11 +0000 |
commit | 5ca40d84ad0fdb44d2c1eb9fbb855e9328dd318a (patch) | |
tree | 78c7c01ce1f939685faec6549b1252ac92a28b31 /src/select.c | |
parent | 418d212308b47d3b02662852accedf19366a80f3 (diff) | |
download | sqlite-5ca40d84ad0fdb44d2c1eb9fbb855e9328dd318a.tar.gz sqlite-5ca40d84ad0fdb44d2c1eb9fbb855e9328dd318a.zip |
Fix a minor typo in a comment. No code changes.
FossilOrigin-Name: 607cfb5bc5c0fb8b789944c2326cfdebf0629e45fbf0a61dd5f667ed685a1bbe
Diffstat (limited to 'src/select.c')
-rw-r--r-- | src/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c index 43dec7d20..f2bf3f303 100644 --- a/src/select.c +++ b/src/select.c @@ -7234,7 +7234,7 @@ int sqlite3Select( pTabList->a[0].fg.jointype & JT_LTORJ); } - /* No futher action if this term of the FROM clause is no a subquery */ + /* No futher action if this term of the FROM clause is not a subquery */ if( pSub==0 ) continue; /* Catch mismatch in the declared columns of a view and the number of |