From: simonmar Date: Thu, 6 Jan 2005 16:37:36 +0000 (+0000) Subject: [project @ 2005-01-06 16:37:36 by simonmar] X-Git-Tag: nhc98-1-18-release~141 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d567f2cc18ef594c7f08a2014ad8b97238eae288;p=haskell-directory.git [project @ 2005-01-06 16:37:36 by simonmar] Apply the previous change to the docs, too. --- diff --git a/System/FilePath.hs b/System/FilePath.hs index bb85ba1..cf0a66a 100644 --- a/System/FilePath.hs +++ b/System/FilePath.hs @@ -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"