aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Temp
diff options
context:
space:
mode:
authorGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-01-31 09:31:09 +0100
committerGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-01-31 09:32:59 +0100
commit38d445e5830fb53efd7133f688b37d85e639d23e (patch)
tree2c5a5f955b2c24be314c53498cf0e4bed843e8a2 /System/Posix/Temp
parentd958007b55221ea0fd508add447f466b342a263b (diff)
Delete some trailing whitespaces
Diffstat (limited to 'System/Posix/Temp')
-rw-r--r--System/Posix/Temp/ByteString.hsc4
1 files changed, 2 insertions, 2 deletions
diff --git a/System/Posix/Temp/ByteString.hsc b/System/Posix/Temp/ByteString.hsc
index 0e30c6f..f66f847 100644
--- a/System/Posix/Temp/ByteString.hsc
+++ b/System/Posix/Temp/ByteString.hsc
@@ -63,7 +63,7 @@ foreign import capi unsafe "HsUnix.h mkstemps"
c_mkstemps :: CString -> CInt -> IO CInt
#endif
--- |'mkstemps' - make a unique filename with a given prefix and suffix
+-- |'mkstemps' - make a unique filename with a given prefix and suffix
-- and open it for reading\/writing (only safe on GHC & Hugs).
-- The returned 'RawFilePath' is the (possibly relative) path of
-- the created file, which contains 6 random characters in between
@@ -79,7 +79,7 @@ mkstemps prefix suffix = do
h <- fdToHandle (Fd fd)
return (name, h)
#else
-mkstemps = error "System.Posix.Temp.mkstemps: not available on this platform"
+mkstemps = error "System.Posix.Temp.mkstemps: not available on this platform"
#endif
#if HAVE_MKDTEMP