aboutsummaryrefslogtreecommitdiff
path: root/src/rowset.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2016-04-28 19:23:10 +0000
committermistachkin <mistachkin@noemail.net>2016-04-28 19:23:10 +0000
commit2075fb08e66d6b21c471d9bbdd88773007342543 (patch)
treebb2691f84086efe3ea05fb8798510c5d4475d94d /src/rowset.c
parentcb6d66becc06dd0ad293779e02b8b9b25dfe3301 (diff)
downloadsqlite-2075fb08e66d6b21c471d9bbdd88773007342543.tar.gz
sqlite-2075fb08e66d6b21c471d9bbdd88773007342543.zip
Fix typo in comment. No changes to code.
FossilOrigin-Name: 9f6f17b5c97c9576c340173d068485fdbfd53253
Diffstat (limited to 'src/rowset.c')
-rw-r--r--src/rowset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rowset.c b/src/rowset.c
index 65fcdb231..bf4382ddd 100644
--- a/src/rowset.c
+++ b/src/rowset.c
@@ -339,7 +339,7 @@ static struct RowSetEntry *rowSetNDeepTree(
return 0;
}
if( iDepth>1 ){ /*OPTIMIZATION-IF-TRUE*/
- /* This branch cases a *balanced* tree to be generated. A valid tree
+ /* This branch causes a *balanced* tree to be generated. A valid tree
** is still generated without this branch, but it is wildly unbalanced
** and inefficient. */
pLeft = rowSetNDeepTree(ppList, iDepth-1);