aboutsummaryrefslogtreecommitdiff
path: root/src/quote.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/quote.zig')
-rw-r--r--src/quote.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quote.zig b/src/quote.zig
index ad5a156..0011f60 100644
--- a/src/quote.zig
+++ b/src/quote.zig
@@ -20,7 +20,7 @@ pub fn parse(alloc: Allocator, l: *Lexer) Error!Element {
.weak_delimiter => {
l.consume();
if (l.peek()) |it| if (it.kind != .quote) break;
- root.append((try Element.Literal.init(alloc, " ")).element());
+ root.append(try Element.Literal.init(alloc, " "));
continue;
},
.strong_delimiter => break,