From 81627facbad1fccc4af34754753dc57a445d0686 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Tue, 26 Aug 2008 20:58:49 +0000 Subject: [PATCH] Fix haddock syntax --- Distribution/Client/Tar.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Distribution/Client/Tar.hs b/Distribution/Client/Tar.hs index 7d23347d031..f2b08d4faff 100644 --- a/Distribution/Client/Tar.hs +++ b/Distribution/Client/Tar.hs @@ -301,8 +301,8 @@ simpleDirectoryEntry name = emptyEntry Directory name -- -- * The directory separator between the prefix and name is /not/ stored. -- -data TarPath = TarPath FilePath -- ^ path name, 100 characters max. - FilePath -- ^ path prefix, 155 characters max. +data TarPath = TarPath FilePath -- path name, 100 characters max. + FilePath -- path prefix, 155 characters max. -- | Convert a 'TarPath' to a native 'FilePath'. -- @@ -311,7 +311,7 @@ data TarPath = TarPath FilePath -- ^ path name, 100 characters max. -- -- * The tar path may be invalid as a native path, eg the filename @\"nul\"@ is -- not valid on Windows. --- * The tar path may be an absolute path or may contain @\".."\@ components. +-- * The tar path may be an absolute path or may contain @\"..\"@ components. -- For security reasons this should not usually be allowed, but it is your -- responsibility to check for these conditions. --