diff options
Diffstat (limited to 'src/parse/parser.rs')
| -rw-r--r-- | src/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/parser.rs b/src/parse/parser.rs index a37cb9c6..06cb1578 100644 --- a/src/parse/parser.rs +++ b/src/parse/parser.rs @@ -48,7 +48,7 @@ impl<'s> Parser<'s> { } /// End the parsing process and return multiple children. - pub fn eject(self) -> Option<(Vec<Green>, bool)>{ + pub fn eject(self) -> Option<(Vec<Green>, bool)> { if self.eof() && self.group_success() { Some((self.children, self.tokens.was_unterminated())) } else { |
