summaryrefslogtreecommitdiff
path: root/codegen
diff options
context:
space:
mode:
authorGravatar Sam Atman2026-02-10 12:10:43 -0500
committerGravatar Sam Atman2026-02-10 12:10:43 -0500
commit0da62e0f08f9a93b3a6735a014d762bddc0769b3 (patch)
tree9365982a38ba4aa72838689374e4a6e060676932 /codegen
parentAllocation-free README examples (diff)
downloadzg-0da62e0f08f9a93b3a6735a014d762bddc0769b3.tar.gz
zg-0da62e0f08f9a93b3a6735a014d762bddc0769b3.tar.xz
zg-0da62e0f08f9a93b3a6735a014d762bddc0769b3.zip
Fix stage names in codegen/gencat
Diffstat (limited to 'codegen')
-rw-r--r--codegen/gencat.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/gencat.zig b/codegen/gencat.zig
index 12c8373..ed22731 100644
--- a/codegen/gencat.zig
+++ b/codegen/gencat.zig
@@ -166,7 +166,7 @@ pub fn main() !void {
166 \\ 166 \\
167 \\}}; 167 \\}};
168 \\ 168 \\
169 \\pub const stage2: [{}]u5 = .{{ 169 \\pub const s2: [{}]u5 = .{{
170 , .{stage2.items.len}); 170 , .{stage2.items.len});
171 for (stage2.items) |entry| try writer.interface.print("{}, ", .{entry}); 171 for (stage2.items) |entry| try writer.interface.print("{}, ", .{entry});
172 172
@@ -174,7 +174,7 @@ pub fn main() !void {
174 \\ 174 \\
175 \\}}; 175 \\}};
176 \\ 176 \\
177 \\pub const stage3: [{}]5 = .{{ 177 \\pub const s3: [{}]u5 = .{{
178 , .{stage3.items.len}); 178 , .{stage3.items.len});
179 for (stage3.items) |entry| try writer.interface.print("{}, ", .{entry}); 179 for (stage3.items) |entry| try writer.interface.print("{}, ", .{entry});
180 180