diff options
author | drh <> | 2025-04-15 19:53:36 +0000 |
---|---|---|
committer | drh <> | 2025-04-15 19:53:36 +0000 |
commit | 8488789d742ba6cb818fab54d3c34e3d512413a0 (patch) | |
tree | 4a13b028709b0a66adae90863bda299de411d63f /src | |
parent | 850289bf1e3bb5916f2acdcd00a6e7baf11940c7 (diff) | |
download | sqlite-8488789d742ba6cb818fab54d3c34e3d512413a0.tar.gz sqlite-8488789d742ba6cb818fab54d3c34e3d512413a0.zip |
Fix a minor typo in a code comment.
FossilOrigin-Name: 158e8c4fd7bdfc1cd4c0135abecd0d00994cd4027cf74ce6e5cf73d76475ae95
Diffstat (limited to 'src')
-rw-r--r-- | src/wherecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index 76f7ec60a..014f697d9 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -542,7 +542,7 @@ static void adjustOrderByCol(ExprList *pOrderBy, ExprList *pEList){ /* ** pX is an expression of the form: (vector) IN (SELECT ...) ** In other words, it is a vector IN operator with a SELECT clause on the -** LHS. But not all terms in the vector are indexable and the terms might +** RHS. But not all terms in the vector are indexable and the terms might ** not be in the correct order for indexing. ** ** This routine makes a copy of the input pX expression and then adjusts |