We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933361a commit 7dd43e1Copy full SHA for 7dd43e1
unison-cli/src/Unison/Codebase/Transcript/Parser.hs
@@ -96,11 +96,12 @@ restOfLine = P.takeWhileP Nothing (/= '\n') <* P.single '\n'
96
97
apiRequest :: P APIRequest
98
apiRequest =
99
- (getRequest
100
- <|> postRequest
101
- <|> apiComment
102
- <|> apiResponse
103
- ) <* spaces
+ ( getRequest
+ <|> postRequest
+ <|> apiComment
+ <|> apiResponse
+ )
104
+ <* spaces
105
where
106
getRequest = do
107
_ <- word "GET"
0 commit comments