diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-12-26 13:47:36 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-12-26 13:47:36 -0400 |
commit | 274dbabd972da62e4480bc09fa62bbcdf6f72e6f (patch) | |
tree | 088a179acfd0400a3ea94bd713d127576284df98 /Annex/CatFile.hs | |
parent | d9ff84c826f22ad6bae5c5df7ea071a91c90d5ea (diff) |
improve comment
Diffstat (limited to 'Annex/CatFile.hs')
-rw-r--r-- | Annex/CatFile.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/CatFile.hs b/Annex/CatFile.hs index aefccd424..c77a208b8 100644 --- a/Annex/CatFile.hs +++ b/Annex/CatFile.hs @@ -89,7 +89,7 @@ catSymLinkTarget :: Sha -> Annex String catSymLinkTarget sha = fromInternalGitPath . decodeBS <$> get where -- Avoid buffering the whole file content, which might be large. - -- 8192 is enough if it really is a symlink or pointer file. + -- 8192 is enough if it really is a symlink. get = L.take 8192 <$> catObject sha {- From a file in the repository back to the key. |