diff options
Diffstat (limited to 'src/parser.zig')
| -rw-r--r-- | src/parser.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.zig b/src/parser.zig index 72b803f..c8f1c81 100644 --- a/src/parser.zig +++ b/src/parser.zig @@ -39,7 +39,7 @@ fn gen(parent: Allocator, l: *Lexer) Error!*Document { errdefer root.deinit(); const alloc = root.allocator(); base: while (l.peek()) |it| { - try root.append(switch (it.kind) { + root.append(switch (it.kind) { // other blocks .title => try title.parse(alloc, l), .list_ordored => try list.parseOrdored(alloc, l), |
