aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/codegen/c.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index 7dabf3bf9e..554a60ad65 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -842,7 +842,7 @@ pub const DeclGen = struct {
.Array => {
// We are referencing the array so it will decay to a C pointer.
// NB: arrays are not really types in C so they are either specified in the declaration
- // or are already pointed to; our only job is to render the element's type.
+ // or are already pointed to; our only job is to render the element type.
return dg.renderType(w, t.elemType());
},
.Optional => {