Merge pull request #1 from charleso/topic/fold-map-doc

Fixed documentation for foldMapT
This commit is contained in:
Tony Morris 2015-06-09 13:29:12 +10:00
commit 3c8ef6a34c

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 ::