diff options
author | narimiran <narimiran@disroot.org> | 2019-01-16 12:32:00 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-01-16 12:32:00 +0100 |
commit | 2e8bf8861417d742a1f1fe7e695a2c10a039d5d6 (patch) | |
tree | d69ee009554703361b8e209b7df85767d4f346bb /lib/pure/collections/sequtils.nim | |
parent | 3abe6e9e14e1da2890ae7b20f0f2bee247b3920b (diff) | |
download | Nim-2e8bf8861417d742a1f1fe7e695a2c10a039d5d6.tar.gz |
sequtils doc: another quickfix [ci skip]
Diffstat (limited to 'lib/pure/collections/sequtils.nim')
-rw-r--r-- | lib/pure/collections/sequtils.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim index b562e2ac6..f73d37f47 100644 --- a/lib/pure/collections/sequtils.nim +++ b/lib/pure/collections/sequtils.nim @@ -301,7 +301,7 @@ proc map*[T, S](s: openArray[T], op: proc (x: T): S {.closure.}): ## ## See also: ## * `mapIt template<#mapIt.t,typed,untyped>`_ - ## * `apply proc<#apply,openArray[T],proc(T)_2>`_ for the in-ace version + ## * `apply proc<#apply,openArray[T],proc(T)_2>`_ for the in-place version ## runnableExamples: let @@ -380,7 +380,7 @@ proc filter*[T](s: openArray[T], pred: proc(x: T): bool {.closure.}): seq[T] ## See also: ## * `filterIt template<#filterIt.t,untyped,untyped>`_ ## * `filter iterator<#filter.i,openArray[T],proc(T)>`_ - ## * `keepIf proc<#keepIf,seq[T],proc(T)>`_ for the in-ace version + ## * `keepIf proc<#keepIf,seq[T],proc(T)>`_ for the in-place version ## runnableExamples: let @@ -811,7 +811,7 @@ template mapIt*(s: typed, op: untyped): untyped = ## ## See also: ## * `map proc<#map,openArray[T],proc(T)>`_ - ## * `applyIt template<#applyIt.t,untyped,untyped>`_ for the in-ace version + ## * `applyIt template<#applyIt.t,untyped,untyped>`_ for the in-place version ## runnableExamples: let |