diff options
Diffstat (limited to 'src/estd/parser/context.zig')
| -rw-r--r-- | src/estd/parser/context.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/estd/parser/context.zig b/src/estd/parser/context.zig index 56fb025..c795479 100644 --- a/src/estd/parser/context.zig +++ b/src/estd/parser/context.zig @@ -2,8 +2,8 @@ const std = @import("std"); const Cursor = @import("../cursor.zig").Cursor; pub fn Context(comptime I: type) type { - return struct { - cursor: Cursor(I), - allocator: std.mem.Allocator, - }; + return struct { + cursor: Cursor(I), + allocator: std.mem.Allocator, +}; } |