summaryrefslogtreecommitdiff
path: root/src/parse/parser.rs
diff options
context:
space:
mode:
authorMartin Haug <mhaug@live.de>2021-11-18 16:21:45 +0100
committerMartin Haug <mhaug@live.de>2021-11-18 16:21:45 +0100
commitfdb9d0743d73c278136b9254286fdc4be71c42a5 (patch)
tree1ae3c19d13b7cd93477aac908e1561400dcf9092 /src/parse/parser.rs
parent3162c6a83a910f34d6ed7e966c11b7e7b5bd4088 (diff)
Refactoring and bugfixes
Diffstat (limited to 'src/parse/parser.rs')
-rw-r--r--src/parse/parser.rs2
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 {