1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Fix imports.

This commit is contained in:
Rob Rix 2019-10-04 18:25:18 -04:00
parent 13d8eca026
commit fdb983a7b5
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ module Control.Monad.Module
, joinr
) where
import Control.Effect.Carrier
import Control.Carrier
-- | Modules over monads allow lifting of a monads product (i.e. 'Control.Monad.join') into another structure composed with the monad. A right-module @f m@ over a monad @m@ therefore allows one to extend @m@s '>>=' operation to values of @f m@ using the '>>=*' operator.
--

View File

@ -17,7 +17,7 @@ module Data.Scope
) where
import Control.Applicative (liftA2)
import Control.Effect.Carrier
import Control.Carrier
import Control.Monad ((>=>), guard)
import Control.Monad.Module
import Control.Monad.Trans.Class

View File

@ -4,7 +4,7 @@ module Data.Term
, hoistTerm
) where
import Control.Effect.Carrier
import Control.Carrier
import Control.Monad (ap)
import Control.Monad.Module