summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-01-22 20:29:07 +0100
committerGrzegorz Adam Hankiewicz <gradha@imap.cc>2013-01-22 21:41:26 +0100
commit91700f29e718e41026b536d72b9ff010a4574bf2 (patch)
treec35bc1437c704f72be04299d0836cb9a3b244327 /lib/pure/collections
parentd0bd5d5cc3407e14ff37590077ec40441be26c84 (diff)
downloadNim-91700f29e718e41026b536d72b9ff010a4574bf2.tar.gz
Renames each proc to map, each is left deprecated.
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/sequtils.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim
index 73713eec9..298e7f27e 100644
--- a/lib/pure/collections/sequtils.nim
+++ b/lib/pure/collections/sequtils.nim
@@ -12,8 +12,8 @@
 ## This module implements operations for the built-in `seq`:idx: type which
 ## were inspired by functional programming languages. If you are looking for
 ## the typical `map` function which applies a function to every element in a
-## sequence, it already exists as the `each` proc in the `system
-## <system.html>`_ module in both mutable and immutable styles.
+## sequence, it already exists in the `system <system.html>`_ module in both
+## mutable and immutable styles.
 ##
 ## Also, for functional style programming you may want to pass `anonymous procs
 ## <manual.html#anonymous-procs>`_ to procs like ``filter`` to reduce typing.