summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@praseodym.org>2015-03-12 15:14:45 +0000
committerGregor Kleen <gkleen@praseodym.org>2015-03-12 15:14:45 +0000
commitb2bba5786c0d629245ed8c280449d8a6b524eb45 (patch)
tree3db32b4ccab7f24eef35c987d8550cffde1aa4f4
parent715864b2879045556c9ddb57a5be0ac6fe106bc9 (diff)
downloaddirty-haskell.org-b2bba5786c0d629245ed8c280449d8a6b524eb45.tar
dirty-haskell.org-b2bba5786c0d629245ed8c280449d8a6b524eb45.tar.gz
dirty-haskell.org-b2bba5786c0d629245ed8c280449d8a6b524eb45.tar.bz2
dirty-haskell.org-b2bba5786c0d629245ed8c280449d8a6b524eb45.tar.xz
dirty-haskell.org-b2bba5786c0d629245ed8c280449d8a6b524eb45.zip
resolving ambigous use of writeFile
-rwxr-xr-xbuild/tex-filter.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/tex-filter.hs b/build/tex-filter.hs
index 13701c3..5d11f07 100755
--- a/build/tex-filter.hs
+++ b/build/tex-filter.hs
@@ -8,14 +8,14 @@ import Control.Applicative
8import qualified Data.ByteString.Char8 as BS 8import qualified Data.ByteString.Char8 as BS
9import Crypto.Hash 9import Crypto.Hash
10import qualified System.IO as SIO 10import qualified System.IO as SIO
11import System.IO.Strict 11import System.IO.Strict hiding (writeFile, readFile)
12import System.Directory 12import System.Directory
13import System.FilePath 13import System.FilePath
14import Text.Printf 14import Text.Printf
15 15
16import qualified Data.Text 16import qualified Data.Text
17 17
18import Prelude hiding (readFile) 18import Prelude
19 19
20type TeX = String 20type TeX = String
21type RawHTML = String 21type RawHTML = String