[project @ 2005-01-06 16:37:36 by simonmar]
authorsimonmar <unknown>
Thu, 6 Jan 2005 16:37:36 +0000 (16:37 +0000)
committersimonmar <unknown>
Thu, 6 Jan 2005 16:37:36 +0000 (16:37 +0000)
Apply the previous change to the docs, too.

System/FilePath.hs

index bb85ba1..cf0a66a 100644 (file)
@@ -386,7 +386,7 @@ searchPathSeparator = ':'
 
 -- ToDo: This should be determined via autoconf (AC_EXEEXT)
 -- | Extension for executable files
--- (typically @\"\"@ on Unix and @\".exe\"@ on Windows or OS\/2)
+-- (typically @\"\"@ on Unix and @\"exe\"@ on Windows or OS\/2)
 exeExtension :: String
 #ifdef mingw32_TARGET_OS
 exeExtension = "exe"
@@ -396,7 +396,7 @@ exeExtension = ""
 
 -- ToDo: This should be determined via autoconf (AC_OBJEXT)
 -- | Extension for object files
--- (typically @\".o\"@ on Unix and @\".obj\"@ on Windows)
+-- (typically @\"o\"@ on Unix and @\"obj\"@ on Windows)
 objExtension :: String
 #ifdef mingw32_TARGET_OS
 objExtension = "obj"
@@ -405,7 +405,7 @@ objExtension = "o"
 #endif
 
 -- | Extension for dynamically linked (or shared) libraries
--- (typically @\".so\"@ on Unix and @\".dll\"@ on Windows)
+-- (typically @\"so\"@ on Unix and @\"dll\"@ on Windows)
 dllExtension :: String
 #ifdef mingw32_TARGET_OS
 dllExtension = "dll"