diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-03 10:01:49 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-03 10:01:49 -0400 |
commit | 10ad429a1e7028e464c02b91088d0952a3bfa5f8 (patch) | |
tree | b887cbe54b73ddd3d13747b90bece51c6d8c9ead /Utility/Misc.hs | |
parent | 6dbf044223969e37b5b4aa495f4ffa86b51d7596 (diff) |
comment spelling
Diffstat (limited to 'Utility/Misc.hs')
-rw-r--r-- | Utility/Misc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Misc.hs b/Utility/Misc.hs index 68199c828..b93b772a9 100644 --- a/Utility/Misc.hs +++ b/Utility/Misc.hs @@ -33,7 +33,7 @@ hGetContentsStrict = hGetContents >=> \s -> length s `seq` return s readFileStrict :: FilePath -> IO String readFileStrict = readFile >=> \s -> length s `seq` return s -{- Reads a file strictly, and using the FileSystemEncofing, so it will +{- Reads a file strictly, and using the FileSystemEncoding, so it will - never crash on a badly encoded file. -} readFileStrictAnyEncoding :: FilePath -> IO String readFileStrictAnyEncoding f = withFile f ReadMode $ \h -> do |