aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-03-07 12:18:23 +0000
committerdrh <drh@noemail.net>2017-03-07 12:18:23 +0000
commit567bd44917bd5e7553d6a38b6eb51429422f5b37 (patch)
treec0cfdfa4c7c1b3a102876378d402b27cb562f974 /src
parenta92b81f487d8f71ef460817be8f4838e9f13816b (diff)
downloadsqlite-567bd44917bd5e7553d6a38b6eb51429422f5b37.tar.gz
sqlite-567bd44917bd5e7553d6a38b6eb51429422f5b37.zip
Minor comment typo fixes. No changes to code.
FossilOrigin-Name: 01cd9fb176cde30658233e36aad44e4a5519612e
Diffstat (limited to 'src')
-rw-r--r--src/walker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/walker.c b/src/walker.c
index d1b1e96a2..a7123d8ab 100644
--- a/src/walker.c
+++ b/src/walker.c
@@ -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.