[commit: ghc] master: Add forgotten > in Control.Applicative (6ea13e9)

git at git.haskell.org git at git.haskell.org
Mon Aug 7 01:56:17 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/6ea13e95ff6680c42ca005c70266325a17a9838d/ghc

>---------------------------------------------------------------

commit 6ea13e95ff6680c42ca005c70266325a17a9838d
Author: Oleg Grenrus <oleg.grenrus at iki.fi>
Date:   Fri Aug 4 18:07:14 2017 +0300

    Add forgotten > in Control.Applicative
    
    As reported by tabaqui on `#hackage`


>---------------------------------------------------------------

6ea13e95ff6680c42ca005c70266325a17a9838d
 libraries/base/Control/Applicative.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libraries/base/Control/Applicative.hs b/libraries/base/Control/Applicative.hs
index 559cced..3e531e5 100644
--- a/libraries/base/Control/Applicative.hs
+++ b/libraries/base/Control/Applicative.hs
@@ -107,7 +107,7 @@ newtype ZipList a = ZipList { getZipList :: [a] }
 
 -- |
 -- > f '<$>' 'ZipList' xs1 '<*>' ... '<*>' 'ZipList' xsN
---       = 'ZipList' (zipWithN f xs1 ... xsN)
+-- >     = 'ZipList' (zipWithN f xs1 ... xsN)
 --
 -- where @zipWithN@ refers to the @zipWith@ function of the appropriate arity
 -- (@zipWith@, @zipWith3@, @zipWith4@, ...). For example:



More information about the ghc-commits mailing list