summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Fractran/Example.hs2
-rw-r--r--Fractran/Interpreter.hs2
-rw-r--r--Thue/Interpreter.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Fractran/Example.hs b/Fractran/Example.hs
index 9a578fb..43d8cc8 100644
--- a/Fractran/Example.hs
+++ b/Fractran/Example.hs
@@ -6,7 +6,7 @@ module Fractran.Example (
prime10) where
-import Parser
+import Fractran.Parser
diff --git a/Fractran/Interpreter.hs b/Fractran/Interpreter.hs
index cd5ae30..1393991 100644
--- a/Fractran/Interpreter.hs
+++ b/Fractran/Interpreter.hs
@@ -3,7 +3,7 @@ module Fractran.Interpreter (
) where
-import Parser
+import Fractran.Parser
diff --git a/Thue/Interpreter.hs b/Thue/Interpreter.hs
index cb79940..896ec8a 100644
--- a/Thue/Interpreter.hs
+++ b/Thue/Interpreter.hs
@@ -8,7 +8,7 @@ module Thue.Interpreter (
import System.Random
import Data.Maybe
import Data.List
-import Parser
+import Thue.Parser