summaryrefslogtreecommitdiff
path: root/libraries/base/Data/Bifoldable.hs
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-03-24 11:21:52 +0100
committerGabor Greif <ggreif@gmail.com>2017-03-24 11:46:35 +0100
commit1dd60ac9a949157da89d4e6e1f8203e746be58f3 (patch)
tree5b7ca1ae64fbb7b244657fc84b7fabd1efe80fc8 /libraries/base/Data/Bifoldable.hs
parentfc41fdc6423b91eef52c1f4c73a9be5e9dea17b9 (diff)
downloadhaskell-1dd60ac9a949157da89d4e6e1f8203e746be58f3.tar.gz
Typos in comments (notes too) [ci skip]
Diffstat (limited to 'libraries/base/Data/Bifoldable.hs')
-rw-r--r--libraries/base/Data/Bifoldable.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Bifoldable.hs b/libraries/base/Data/Bifoldable.hs
index 9006e61fdd..1f632e2ff9 100644
--- a/libraries/base/Data/Bifoldable.hs
+++ b/libraries/base/Data/Bifoldable.hs
@@ -117,7 +117,7 @@ class Bifoldable p where
bifoldr :: (a -> c -> c) -> (b -> c -> c) -> c -> p a b -> c
bifoldr f g z t = appEndo (bifoldMap (Endo #. f) (Endo #. g) t) z
- -- | Combines the elments of a structure in a left associative manner. Given
+ -- | Combines the elements of a structure in a left associative manner. Given
-- a hypothetical function @toEitherList :: p a b -> [Either a b]@ yielding a
-- list of all elements of a structure in order, the following would hold:
--