aboutsummaryrefslogtreecommitdiff
path: root/src/paragraph.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-30 17:36:52 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-04-30 17:36:52 +0200
commit5ecd48d4b9f928beb4143f88e802ee4d9e25a2bd (patch)
tree6fd4944a8c81891046c7006336f46b808b56d08d /src/paragraph.zig
parent103efd52b59f77fbfde6a1b7daf65b16c2c26810 (diff)
refactor(element): supports more type in root append
Diffstat (limited to 'src/paragraph.zig')
-rw-r--r--src/paragraph.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paragraph.zig b/src/paragraph.zig
index f1fca67..f4a6619 100644
--- a/src/paragraph.zig
+++ b/src/paragraph.zig
@@ -23,7 +23,7 @@ pub fn parse(alloc: Allocator, l: *Lexer) Error!Element {
l.consume();
const future = l.peek() orelse return el.element();
if (!future.kind.isInParagraph()) return el.element();
- root.append((try Element.Literal.init(alloc, " ")).element());
+ root.append(try Element.Literal.init(alloc, " "));
},
else => root.append(try parseLine(alloc, l)),
};