1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix typo in comment. No changes to code.

FossilOrigin-Name: 9f6f17b5c97c9576c340173d068485fdbfd53253
This commit is contained in:
mistachkin
2016-04-28 19:23:10 +00:00
parent cb6d66becc
commit 2075fb08e6
3 changed files with 9 additions and 9 deletions

View File

@@ -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);