1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

remove extraneous whitespace parser

This commit is contained in:
joshvera 2015-10-19 15:16:47 -04:00
parent 89d14cf43a
commit 958e6b2634

View File

@ -80,7 +80,6 @@ func elements(json: JSONParser) -> ValuesParser {
let oneOrMore: ValuesParser = curry { [$0] + $1 } <^>
value
<* whitespace
<*> separatedValues
return oneOrMore <|> pure([])
}