From ace10b648cd48d318e322e7f0a87230296d03459 Mon Sep 17 00:00:00 2001 From: David Hewson Date: Sun, 10 Jun 2018 09:20:15 +0100 Subject: [PATCH] <&> docs fix (#88) `@<&>@` appears as `&` on the page, which seems wrong --- src/Protolude/Functor.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protolude/Functor.hs b/src/Protolude/Functor.hs index 5520bb18a..766b29208 100644 --- a/src/Protolude/Functor.hs +++ b/src/Protolude/Functor.hs @@ -53,7 +53,7 @@ foreach = flip fmap #if !MIN_VERSION_base(4,11,0) -- | Infix version of foreach. -- --- @<&>@ is to '<$>' what '&' is to '$'. +-- '<&>' is to '<$>' what '&' is to '$'. infixl 1 <&> (<&>) :: Functor f => f a -> (a -> b) -> f b