diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 19:58:26 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 19:58:26 +0100 |
| commit | 3f4375a14218796cbd7bfff1c8cfff0f7bb1f6df (patch) | |
| tree | 1521b91b8f99af588156058b5f9aa12bb1626ac7 /src/estd/parser/context.zig | |
| parent | 8d062a90b1ffbe9e00334fa3e9e939406bd32141 (diff) | |
change .editorconfig
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, +}; } |