summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2018-06-08 18:24:47 +0200
committerBen Gamari <ben@smart-cactus.org>2018-06-14 10:03:28 -0400
commit261209d1f7d33a124b97c0f59412ae62ff9c1ca8 (patch)
treeb872592d808f217855731131beea263a763db680
parent56007290cad2db5a30af5b0d34ee235e9c8adc83 (diff)
downloadhaskell-261209d1f7d33a124b97c0f59412ae62ff9c1ca8.tar.gz
Duplicated and
-rw-r--r--libraries/base/Data/Traversable.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Traversable.hs b/libraries/base/Data/Traversable.hs
index cb205cf23c..bed2ef93ab 100644
--- a/libraries/base/Data/Traversable.hs
+++ b/libraries/base/Data/Traversable.hs
@@ -164,7 +164,7 @@ class (Functor t, Foldable t) => Traversable t where
traverse f = sequenceA . fmap f
-- | Evaluate each action in the structure from left to right, and
- -- and collect the results. For a version that ignores the results
+ -- collect the results. For a version that ignores the results
-- see 'Data.Foldable.sequenceA_'.
sequenceA :: Applicative f => t (f a) -> f (t a)
{-# INLINE sequenceA #-} -- See Note [Inline default methods]