aboutsummaryrefslogtreecommitdiffstats
path: root/app/Review.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-13 05:32:02 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-14 07:07:45 +0100
commitf73d14f3f7ff7b7f188d9038856baee0cada0d51 (patch)
tree2f0defbd905cfd75ed83dcf269553583e6375456 /app/Review.hs
parent75444b933f1f23223576fe0ced682b558393ed21 (diff)
chore: add `REVIEW` marker
Diffstat (limited to 'app/Review.hs')
-rw-r--r--app/Review.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Review.hs b/app/Review.hs
index ef901ce..37690d9 100644
--- a/app/Review.hs
+++ b/app/Review.hs
@@ -115,7 +115,7 @@ addComments =
map . mapContent . mapHunks . mapLines $ \line@(D.Line {..}) ->
if lineAnnotation == D.Comment
then -- TODO Haskell comment
- D.Line D.Added ("--" <> lineContent)
+ D.Line D.Added ("-- REVIEW" <> lineContent)
else line
where
mapContent f x = x {D.fileDeltaContent = f x.fileDeltaContent}