diff options
| author | drew <reserveblue@protonmail.com> | 2021-11-14 19:08:14 -0800 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-11-16 16:51:31 -0700 |
| commit | ad4627ea3b645e4dd51397fe4a2d92878c2bd9bf (patch) | |
| tree | 469a8791f6dc2db200108ee02f2da843f20ab8e3 /src/codegen/c.zig | |
| parent | 34684725aa728e392368a5743e1a2405328d5788 (diff) | |
| download | zig-ad4627ea3b645e4dd51397fe4a2d92878c2bd9bf.tar.gz zig-ad4627ea3b645e4dd51397fe4a2d92878c2bd9bf.zip | |
small changes + align tests obviously shouldn't have passed
Diffstat (limited to 'src/codegen/c.zig')
| -rw-r--r-- | src/codegen/c.zig | 2 |
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 => { |
