Remove derived 'Show' instance for 'RR'

This commit is contained in:
aaron levin 2015-08-10 13:32:46 -04:00 committed by Arian van Putten
parent 9aaf426be0
commit ece355bf58

View file

@ -31,7 +31,7 @@ type RoutingApplication =
-- | A wrapper around @'Either' 'RouteMismatch' a@. -- | A wrapper around @'Either' 'RouteMismatch' a@.
newtype RouteResult a = newtype RouteResult a =
RR { routeResult :: Either RouteMismatch a } RR { routeResult :: Either RouteMismatch a }
deriving (Show, Functor, Applicative, Monad) deriving (Functor, Applicative, Monad)
-- | If we get a `Right`, it has precedence over everything else. -- | If we get a `Right`, it has precedence over everything else.
-- --