summary refs log tree commit diff stats
path: root/rod/ropes.nim
diff options
context:
space:
mode:
Diffstat (limited to 'rod/ropes.nim')
-rwxr-xr-xrod/ropes.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/rod/ropes.nim b/rod/ropes.nim
index 0139daf2b..542c6b3b3 100755
--- a/rod/ropes.nim
+++ b/rod/ropes.nim
@@ -52,9 +52,9 @@
 #  Note that the left and right pointers are not needed for leafs.
 #  Leafs have relatively high memory overhead (~30 bytes on a 32
 #  bit machines) and we produce many of them. This is why we cache and
-#  share leafs accross different rope trees.
+#  share leaves accross different rope trees.
 #  To cache them they are inserted in another tree, a splay tree for best
-#  performance. But for the caching tree we use the leafs' left and right
+#  performance. But for the caching tree we use the leaves' left and right
 #  pointers.
 #