1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Minor comment typo fixes. No changes to code.

FossilOrigin-Name: 01cd9fb176cde30658233e36aad44e4a5519612e
This commit is contained in:
drh
2017-03-07 12:18:23 +00:00
parent a92b81f487
commit 567bd44917
3 changed files with 9 additions and 9 deletions

View File

@@ -27,11 +27,11 @@
**
** WRC_Continue Continue descending down the tree.
**
** WRC_Prune Do not descend into child nodes. But allow
** WRC_Prune Do not descend into child nodes, but allow
** the walk to continue with sibling nodes.
**
** WRC_Abort Do no more callbacks. Unwind the stack and
** return the top-level walk call.
** return from the top-level walk call.
**
** The return value from this routine is WRC_Abort to abandon the tree walk
** and WRC_Continue to continue.