aboutsummaryrefslogtreecommitdiff
path: root/src/eval/html
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval/html')
-rw-r--r--src/eval/html/Element.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval/html/Element.zig b/src/eval/html/Element.zig
index 6073e6a..cf5e74c 100644
--- a/src/eval/html/Element.zig
+++ b/src/eval/html/Element.zig
@@ -29,8 +29,8 @@ pub const Node = struct {
const Self = @This();
vtable: struct {
- render: *const fn (self: *anyopaque, alloc: Allocator) Error![]const u8,
- node: *const fn (self: *anyopaque) *Node,
+ render: *const fn (*anyopaque, Allocator) Error![]const u8,
+ node: *const fn (*anyopaque) *Node,
},
ptr: *anyopaque,