aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-05-06 06:41:59 -0400
committerAndrew Kelley <andrew@ziglang.org>2023-05-06 10:27:39 -0700
commitd71a43ec2c28a53a3e1d9bcb538707eca00a6fc0 (patch)
tree02277281b9c401e7616ab7196bb7e2f82284d2d5 /src
parent1e9811070be35463e5cf4dfd284d9313e0621ded (diff)
downloadzig-d71a43ec2c28a53a3e1d9bcb538707eca00a6fc0.tar.gz
zig-d71a43ec2c28a53a3e1d9bcb538707eca00a6fc0.zip
cbe: fix typos
Diffstat (limited to 'src')
-rw-r--r--src/codegen/c.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index f69cec960e..7da99de5c1 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -159,7 +159,7 @@ const reserved_idents = std.ComptimeStringMap(void, .{
.{ "double", {} },
.{ "else", {} },
.{ "enum", {} },
- .{ "extern ", {} },
+ .{ "extern", {} },
.{ "float", {} },
.{ "for", {} },
.{ "fortran", {} },
@@ -198,7 +198,7 @@ const reserved_idents = std.ComptimeStringMap(void, .{
.{ "unsigned", {} },
.{ "void", {} },
.{ "volatile", {} },
- .{ "while ", {} },
+ .{ "while", {} },
// stdarg.h
.{ "va_start", {} },