From a5e6802b5b6f9354e065936998d9882e8ceecb5b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 21 Jun 2011 14:44:56 -0400 Subject: [PATCH] typos in comments --- Locations.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Locations.hs b/Locations.hs index da781ac83a..8f7b11a5c2 100644 --- a/Locations.hs +++ b/Locations.hs @@ -94,7 +94,7 @@ gitAnnexObjectDir r | Git.repoIsLocalBare r = addTrailingPathSeparator $ Git.workTree r objectDir | otherwise = addTrailingPathSeparator $ Git.workTree r ".git" objectDir -{- .git-annex/tmp/ is used for temp files -} +{- .git/annex/tmp/ is used for temp files -} gitAnnexTmpDir :: Git.Repo -> FilePath gitAnnexTmpDir r = addTrailingPathSeparator $ gitAnnexDir r "tmp" @@ -102,7 +102,7 @@ gitAnnexTmpDir r = addTrailingPathSeparator $ gitAnnexDir r "tmp" gitAnnexTmpLocation :: Git.Repo -> Key -> FilePath gitAnnexTmpLocation r key = gitAnnexTmpDir r keyFile key -{- .git-annex/bad/ is used for bad files found during fsck -} +{- .git/annex/bad/ is used for bad files found during fsck -} gitAnnexBadDir :: Git.Repo -> FilePath gitAnnexBadDir r = addTrailingPathSeparator $ gitAnnexDir r "bad"