Skip to content

Commit

Permalink
fixup! Use resourcet for resource managment
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Jan 18, 2017
1 parent 88d7dea commit 75e3963
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ instance (Functor m, Monad m) => Applicative (RouteResultT m) where
pure = return
(<*>) = ap

instance (Functor m, Monad m) => Monad (RouteResultT m) where
instance Monad m => Monad (RouteResultT m) where
return = RouteResultT . return . Route
m >>= k = RouteResultT $ do
a <- runRouteResultT m
Expand Down

0 comments on commit 75e3963

Please sign in to comment.