From 4694fee38387e7a14dd85042a35fcf9fdd8c5ce5 Mon Sep 17 00:00:00 2001 From: Ian Jeffries Date: Wed, 27 Dec 2017 05:29:52 -0500 Subject: [PATCH] Fix spelling. (#77) --- src/Protolude/Exceptions.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protolude/Exceptions.hs b/src/Protolude/Exceptions.hs index 031120d17..54c329a63 100644 --- a/src/Protolude/Exceptions.hs +++ b/src/Protolude/Exceptions.hs @@ -22,7 +22,7 @@ hush :: Alternative m => Either e a -> m a hush (Left _) = empty hush (Right x) = pure x --- To suppress redundenet applicative constraint warning on GHC 8.0 +-- To suppress redundant applicative constraint warning on GHC 8.0 #if ( __GLASGOW_HASKELL__ >= 800 ) note :: (MonadError e m) => e -> Maybe a -> m a note err = maybe (throwError err) pure