diff options
Diffstat (limited to 'lib/pure/ropes.nim')
-rwxr-xr-x | lib/pure/ropes.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/ropes.nim b/lib/pure/ropes.nim index 6655a9fda..aa793b4f3 100755 --- a/lib/pure/ropes.nim +++ b/lib/pure/ropes.nim @@ -1,7 +1,7 @@ # # # Nimrod's Runtime Library -# (c) Copyright 2009 Andreas Rumpf +# (c) Copyright 2010 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -13,7 +13,7 @@ ## trees that are only flattened when converting to a native Nimrod ## string. The empty string is represented by ``nil``. Ropes are immutable and ## subtrees can be shared without copying. -## Leaves can be cached for better memory efficiency at the cost of a bit of +## Leaves can be cached for better memory efficiency at the cost of ## runtime efficiency. {.deadCodeElim: on.} @@ -372,4 +372,4 @@ proc equalsFile*(r: PRope, f: string): bool = new(N) # init dummy node for splay algorithm -{.pop.} \ No newline at end of file +{.pop.} |