From 3621b46b445b43bccdb3ce9f1d18ac45455dc47e Mon Sep 17 00:00:00 2001 From: Chris Done Date: Fri, 8 May 2015 15:57:03 +0200 Subject: [PATCH] Fix docs --- src/Path.hs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Path.hs b/src/Path.hs index 6977efc..a29abc5 100644 --- a/src/Path.hs +++ b/src/Path.hs @@ -99,8 +99,7 @@ parseRelDir filepath = then return (Path (normalizeDir filepath)) else throwM (InvalidRelDir filepath) --- | Get a location for an absolute file. Produces a normalized --- path which always ends in a path separator. +-- | Get a location for an absolute file. -- -- Throws: 'PathParseException' -- @@ -114,8 +113,7 @@ parseAbsFile filepath = then return (Path (normalizeFile filepath)) else throwM (InvalidAbsFile filepath) --- | Get a location for a relative file. Produces a normalized --- path which always ends in a path separator. +-- | Get a location for a relative file. -- -- Throws: 'PathParseException' --