Skip to content

Commit 5a9275b

Browse files
ChrisPennergithub-actions[bot]
authored andcommitted
automatically run ormolu
1 parent 86cca2f commit 5a9275b

File tree

1 file changed

+6
-5
lines changed
  • unison-cli/src/Unison/Codebase/Transcript

1 file changed

+6
-5
lines changed

unison-cli/src/Unison/Codebase/Transcript/Parser.hs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@ restOfLine = P.takeWhileP Nothing (/= '\n') <* P.single '\n'
9696

9797
apiRequest :: P APIRequest
9898
apiRequest =
99-
(getRequest
100-
<|> postRequest
101-
<|> apiComment
102-
<|> apiResponse
103-
) <* spaces
99+
( getRequest
100+
<|> postRequest
101+
<|> apiComment
102+
<|> apiResponse
103+
)
104+
<* spaces
104105
where
105106
getRequest = do
106107
_ <- word "GET"

0 commit comments

Comments
 (0)