summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorAnthony Dario <AnthonyDario@users.noreply.github.com>2022-05-12 20:19:42 -0700
committerGitHub <noreply@github.com>2022-05-13 11:19:42 +0800
commit19001c070bbe7645ff45fcbd66ab221235715302 (patch)
tree47b801fc6346cf0870eb52e8de0989ca0c474931 /lib/pure/collections
parentc61eb5df32c66431d0d08417c39e268fdf236132 (diff)
downloadNim-19001c070bbe7645ff45fcbd66ab221235715302.tar.gz
Fix typo in sequtils documentation (#19789)
Found another small typo.
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/sequtils.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim
index 5e9b492c2..39908e9c1 100644
--- a/lib/pure/collections/sequtils.nim
+++ b/lib/pure/collections/sequtils.nim
@@ -914,7 +914,7 @@ template foldl*(sequence, operation, first): untyped =
   ##
   ## The `operation` parameter should be an expression which uses the variables
   ## `a` and `b` for each step of the fold. The `first` parameter is the
-  ## start value (the first `a`) and therefor defines the type of the result.
+  ## start value (the first `a`) and therefore defines the type of the result.
   ##
   ## **See also:**
   ## * `foldr template<#foldr.t,untyped,untyped>`_