summaryrefslogtreecommitdiff
path: root/libraries/base/Data/Bifoldable.hs
diff options
context:
space:
mode:
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:
--