summaryrefslogtreecommitdiff
path: root/Locations.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-10-15 16:09:30 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-10-15 16:09:30 -0400
commite577656fea6f66ef64547374e962adb7fd4ce80a (patch)
tree95fceeac0b0781ad8708121ee7edf58a84663686 /Locations.hs
parent80104eab9a28b9a94fb36653b7cd95b734e16e4d (diff)
relative link fix
Diffstat (limited to 'Locations.hs')
-rw-r--r--Locations.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Locations.hs b/Locations.hs
index 960a8938d..733e74553 100644
--- a/Locations.hs
+++ b/Locations.hs
@@ -31,10 +31,9 @@ annexLocation :: Git.Repo -> Key -> FilePath
annexLocation r key =
(Git.workTree r) ++ "/" ++ (annexLocationRelative r key)
-{- Annexed file's location relative to the gitWorkTree -}
+{- Annexed file's location relative to git's working tree. -}
annexLocationRelative :: Git.Repo -> Key -> FilePath
-annexLocationRelative r key =
- Git.dir r ++ "/annex/" ++ (keyFile key)
+annexLocationRelative r key = Git.dir r ++ "/annex/" ++ (keyFile key)
{- Converts a key into a filename fragment.
-