summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiyana <nliyanaam@smu.edu.sg>2020-11-10 17:11:41 +0800
committerLiyana <nliyanaam@smu.edu.sg>2020-11-10 17:11:41 +0800
commit4364b1d9fb62551fb6361be36cf2563e6d2d93a5 (patch)
tree26b7c5d3fadaae2693266ca53318637394dabf7c
parent33aad1b8de0b8387426155870c98adf35e400962 (diff)
Replaced Control.Monad.Error with Control.Monad.Except
-rw-r--r--src/runtime/haskell/PGF/TypeCheck.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF/TypeCheck.hs b/src/runtime/haskell/PGF/TypeCheck.hs
index 5db4ef439..c5cc44b4e 100644
--- a/src/runtime/haskell/PGF/TypeCheck.hs
+++ b/src/runtime/haskell/PGF/TypeCheck.hs
@@ -41,7 +41,7 @@ import Control.Applicative
import Control.Monad
--import Control.Monad.Identity
import Control.Monad.State
-import Control.Monad.Error
+import Control.Monad.Except
import Text.PrettyPrint
-----------------------------------------------------