aboutsummaryrefslogtreecommitdiff
path: root/CabalHelper
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2015-06-24 11:25:43 +0200
committerDaniel Gröber <dxld@darkboxed.org>2015-06-24 11:25:43 +0200
commitfefde116f3574d9e2f132efc8a0561decdda9a39 (patch)
tree4f6a3e8bf3318ced7cc09ebd6c51ccc4d2a61cac /CabalHelper
parent73edf0fccfe8119be7b8c3d6269f9825b56598ad (diff)
Typo
Diffstat (limited to 'CabalHelper')
-rw-r--r--CabalHelper/Data.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CabalHelper/Data.hs b/CabalHelper/Data.hs
index 2ab6ea5..a006d65 100644
--- a/CabalHelper/Data.hs
+++ b/CabalHelper/Data.hs
@@ -28,7 +28,7 @@ import System.Directory
import System.IO.Temp
withHelperSources :: (FilePath -> IO a) -> IO a
-withHelperSources action = withSystemTempDirectory "caba-helper" $ \dir -> do
+withHelperSources action = withSystemTempDirectory "cabal-helper" $ \dir -> do
let chdir = dir </> "CabalHelper"
createDirectory chdir
forM_ sourceFiles $ \(fn, src) -> writeFile (chdir </> fn) src