Fixed documentation for foldMapT

This commit is contained in:
Charles O'Farrell 2015-06-08 11:07:21 +10:00
parent 161d1b0e24
commit f969d2d0cd

View file

@ -161,7 +161,7 @@ set =
----
-- | Observe that @fmap@ can be recovered from @traverse@ using @Identity@.
-- | Observe that @foldMap@ can be recovered from @traverse@ using @Const@.
--
-- /Reminder:/ foldMap :: (Foldable t, Monoid b) => (a -> b) -> t a -> b
foldMapT ::