diff options
Diffstat (limited to 'src/content.zig')
| -rw-r--r-- | src/content.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.zig b/src/content.zig index 53f9418..b1ac0c7 100644 --- a/src/content.zig +++ b/src/content.zig @@ -9,7 +9,7 @@ const testing = @import("testing.zig"); const doTest = testing.do; const doTestError = testing.doError; -pub const Error = error{ ModifierNotClosed, IllegalPlacement } || Lexer.Error || Allocator.Error; +pub const Error = error{ ModifierNotClosed, IllegalPlacement } || Allocator.Error; pub fn parse(alloc: Allocator, l: *Lexer) Error!Element { var content = try Element.Empty.init(alloc); |
