summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-08-06 18:30:44 +0100
committerLars Wirzenius <liw@liw.fi>2014-08-06 18:30:44 +0100
commitca7457957e7a0bc7f0030015d2983640e89b9636 (patch)
tree2c2712f7c3e6822db61e786c82d20d89babd5e5d
parent2bd1068712856165d38294101641560fa294a143 (diff)
downloadlarch-ca7457957e7a0bc7f0030015d2983640e89b9636.tar.gz
Fix typo in example
Reported-by: Richard Baron Penman
-rw-r--r--doc/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/index.rst b/doc/index.rst
index 85da376..372c464 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -79,7 +79,7 @@ Alternatively, to clone an existing tree if one exists::
To insert some data into the tree::
- for key in ['abc', 'foo', bar']:
+ for key in ['abc', 'foo', 'bar']:
tree.insert(key, key.upper())
To look up value for one key::