1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Whitespace has some places it can be.

This commit is contained in:
Rob Rix 2015-09-18 13:43:08 -04:00
parent 8191905eaf
commit cce9fe71b8

View File

@ -12,7 +12,7 @@ enum Swift {
struct Parsers {
static let keyValue = KeyValue <^> (word <* ^"=" <*> word)
static let branch = Branch <^> (^"(" *> ws* *> word <*> sexpr* <* ^")")
static let sexpr: String -> State<Swift>? = never
static let branch = Branch <^> (^"(" *> ws* *> word <*> sexpr* <* ws* <* ^")")
static let sexpr: String -> State<Swift>? = never <* ws*
}
}