Haddock documentation: expose exportPGF, some other small improvements

This commit is contained in:
hallgren
2014-12-08 14:48:14 +00:00
parent 55e2b55e60
commit 676b0d6e81
4 changed files with 13 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
-- | GF, the Grammatical Framework, as a library
module GF(
-- * Command line interface
module GF.Main,
@@ -7,6 +8,8 @@ module GF(
-- * Compiling GF grammars
module GF.Compile,
module GF.CompileInParallel,
-- module PF.Compile.Export, -- haddock does the wrong thing with this
exportPGF,
module GF.CompileOne,
-- * Abstract syntax, parsing, pretty printing and serialisation
@@ -25,6 +28,7 @@ import GF.Interactive
import GF.Compile
import GF.CompileInParallel
import GF.CompileOne
import GF.Compile.Export(exportPGF)
import GF.Compile.GetGrammar
import GF.Grammar.Grammar