summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src-3.0/GF/Compile.hs2
-rw-r--r--src-3.0/GF/Compile/GetGrammar.hs (renamed from src-3.0/GF/Devel/GetGrammar.hs)2
2 files changed, 2 insertions, 2 deletions
diff --git a/src-3.0/GF/Compile.hs b/src-3.0/GF/Compile.hs
index dba6c96cc..80f5c0fd4 100644
--- a/src-3.0/GF/Compile.hs
+++ b/src-3.0/GF/Compile.hs
@@ -1,7 +1,7 @@
module GF.Compile (batchCompile, compileToGFCC) where
-- the main compiler passes
-import GF.Devel.GetGrammar
+import GF.Compile.GetGrammar
import GF.Compile.Extend
import GF.Compile.Rebuild
import GF.Compile.Rename
diff --git a/src-3.0/GF/Devel/GetGrammar.hs b/src-3.0/GF/Compile/GetGrammar.hs
index cdd275ace..0687c081b 100644
--- a/src-3.0/GF/Devel/GetGrammar.hs
+++ b/src-3.0/GF/Compile/GetGrammar.hs
@@ -12,7 +12,7 @@
-- this module builds the internal GF grammar that is sent to the type checker
-----------------------------------------------------------------------------
-module GF.Devel.GetGrammar where
+module GF.Compile.GetGrammar where
import GF.Data.Operations
import qualified GF.Source.ErrM as E