aboutsummaryrefslogtreecommitdiffstats
path: root/app/Git.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-13 06:16:50 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-14 07:07:45 +0100
commit7f0066cafd2a91959ef618ef8342524ca30a328f (patch)
tree6a9194edb4c3f48401d6da35a09942aa77920148 /app/Git.hs
parente06061a2d5717bee9b0b4fcaf72d3c79923e4016 (diff)
review: request-changes feature/review
Diffstat (limited to 'app/Git.hs')
-rw-r--r--app/Git.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Git.hs b/app/Git.hs
index fd4fa53..eae3a85 100644
--- a/app/Git.hs
+++ b/app/Git.hs
@@ -95,8 +95,12 @@ readTextFileOfText :: CommitHash -> FilePath -> IO LT.Text
readTextFileOfText = readTextFileOf LT.readFile LT.decodeUtf8
readTextFileOfBS :: CommitHash -> FilePath -> IO LB.ByteString
-readTextFileOfBS = readTextFileOf LB.readFile (\x -> x)
+readTextFileOfBS = readTextFileOf LB.readFile id
-- REVIEW Suggestion: we could use `id` instead of `\x -> x`
+--
+-- REVIEW OK!
+--
+-- RESOLVED
readTextFileOf :: (FilePath -> IO a) -> (LB.ByteString -> a) -> CommitHash -> FilePath -> IO a
readTextFileOf readFile _ WorkingTree filePath =