Fix typo in sequtils documentation (#19789)

Found another small typo.

(cherry picked from commit 19001c070b)
This commit is contained in:
Anthony Dario
2022-05-12 20:19:42 -07:00
committed by narimiran
parent c6e3ad4ab9
commit 28af1e5e45

View File

@@ -910,7 +910,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>`_