diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-02-09 16:42:37 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-02-09 16:42:37 +1100 |
commit | 81b11d4ee31af630cd44e0bed909de2b9e576783 (patch) | |
tree | 5b13052a36659689a14cc8734b920fef533901d4 | |
parent | 9b346259852462025699cda34dec63d129f763ed (diff) |
Fixed module names
-rw-r--r-- | Fractran/Example.hs | 2 | ||||
-rw-r--r-- | Fractran/Interpreter.hs | 2 | ||||
-rw-r--r-- | Fractran/Parser.hs | 2 | ||||
-rw-r--r-- | Thue/Interpreter.hs | 2 | ||||
-rw-r--r-- | Thue/Parser.hs | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Fractran/Example.hs b/Fractran/Example.hs index 198074e..9a578fb 100644 --- a/Fractran/Example.hs +++ b/Fractran/Example.hs @@ -1,4 +1,4 @@ -module Example ( +module Fractran.Example ( addition, multiply, prime2, diff --git a/Fractran/Interpreter.hs b/Fractran/Interpreter.hs index b62f279..cd5ae30 100644 --- a/Fractran/Interpreter.hs +++ b/Fractran/Interpreter.hs @@ -1,4 +1,4 @@ -module Interpreter ( +module Fractran.Interpreter ( fractran ) where diff --git a/Fractran/Parser.hs b/Fractran/Parser.hs index 19e619f..f4a793b 100644 --- a/Fractran/Parser.hs +++ b/Fractran/Parser.hs @@ -1,4 +1,4 @@ -module Parser ( +module Fractran.Parser ( FractranProgram(..), parseFractran diff --git a/Thue/Interpreter.hs b/Thue/Interpreter.hs index f5e6924..cb79940 100644 --- a/Thue/Interpreter.hs +++ b/Thue/Interpreter.hs @@ -1,4 +1,4 @@ -module Interpreter ( +module Thue.Interpreter ( thue, extractInfix, nextInRange diff --git a/Thue/Parser.hs b/Thue/Parser.hs index 0971324..948035d 100644 --- a/Thue/Parser.hs +++ b/Thue/Parser.hs @@ -1,4 +1,4 @@ -module Parser ( +module Thue.Parser ( ThueProgram(..), ThueRule(..), ThueState, |