diff options
author | Gregor Kleen <gkleen@praseodym.org> | 2015-03-12 15:14:45 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@praseodym.org> | 2015-03-12 15:14:45 +0000 |
commit | b2bba5786c0d629245ed8c280449d8a6b524eb45 (patch) | |
tree | 3db32b4ccab7f24eef35c987d8550cffde1aa4f4 /build | |
parent | 715864b2879045556c9ddb57a5be0ac6fe106bc9 (diff) | |
download | dirty-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
Diffstat (limited to 'build')
-rwxr-xr-x | build/tex-filter.hs | 4 |
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 | |||
8 | import qualified Data.ByteString.Char8 as BS | 8 | import qualified Data.ByteString.Char8 as BS |
9 | import Crypto.Hash | 9 | import Crypto.Hash |
10 | import qualified System.IO as SIO | 10 | import qualified System.IO as SIO |
11 | import System.IO.Strict | 11 | import System.IO.Strict hiding (writeFile, readFile) |
12 | import System.Directory | 12 | import System.Directory |
13 | import System.FilePath | 13 | import System.FilePath |
14 | import Text.Printf | 14 | import Text.Printf |
15 | 15 | ||
16 | import qualified Data.Text | 16 | import qualified Data.Text |
17 | 17 | ||
18 | import Prelude hiding (readFile) | 18 | import Prelude |
19 | 19 | ||
20 | type TeX = String | 20 | type TeX = String |
21 | type RawHTML = String | 21 | type RawHTML = String |