Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 28c26d0

Browse files
committed
Run stylish-haskell on changes, again
1 parent be96fcf commit 28c26d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Semantic/Git.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ sh = shelly . silently . onCommandHandles (initOutputHandles (`hSetBinaryMode` T
4343
parseEntries :: Text -> [TreeEntry]
4444
parseEntries text = case parseOnly everything text of
4545
Done "" ls -> ls
46-
other -> error ("There was an error parsing the Git output: " <> show other)
47-
where
46+
other -> error ("There was an error parsing the Git output: " <> show other)
47+
where
4848
everything = AP.sepBy entryParser "\NUL" <* ("\NUL\n" <?> "End sequence") <* AP.endOfInput <?> "Everything"
4949
parseOnly p t = AP.feed (AP.parse p t) ""
5050

0 commit comments

Comments
 (0)