diff options
author | Simon Jakobi <simon.jakobi@gmail.com> | 2018-11-24 18:40:17 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-07 22:52:25 -0500 |
commit | eb7ba36b8350d07ad89da2afebea4b17deb711ca (patch) | |
tree | ba14c062b73266f81d3c40d17540613cd6406d2a /libraries/base | |
parent | 07e02d578538248aa12bd3f5a77c76ccfdc9e0db (diff) | |
download | haskell-eb7ba36b8350d07ad89da2afebea4b17deb711ca.tar.gz |
Fix typo in Foldable docs
Diffstat (limited to 'libraries/base')
-rw-r--r-- | libraries/base/Data/Foldable.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Foldable.hs b/libraries/base/Data/Foldable.hs index 7134b0586e..a7d57f7e62 100644 --- a/libraries/base/Data/Foldable.hs +++ b/libraries/base/Data/Foldable.hs @@ -205,7 +205,7 @@ class Foldable t where -- For a general 'Foldable' structure this should be semantically identical -- to, -- - -- @foldl f z = 'List.foldl'' f z . 'toList'@ + -- @foldl' f z = 'List.foldl'' f z . 'toList'@ -- -- @since 4.6.0.0 foldl' :: (b -> a -> b) -> b -> t a -> b |