diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-10-12 05:26:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 05:26:11 -0400 |
| commit | 7ce1ee1bce4d9ca05a647c9c390c6525be0b6362 (patch) | |
| tree | a65ac3b2e1f252a1cc7c5efa6e70f0320034e823 /test/behavior/array.zig | |
| parent | bec40a89c21009ea7f2c41362cc13d27f065b43e (diff) | |
| parent | 8e2aaf6aed5213736f6cbbb374098e2394f19429 (diff) | |
| download | zig-7ce1ee1bce4d9ca05a647c9c390c6525be0b6362.tar.gz zig-7ce1ee1bce4d9ca05a647c9c390c6525be0b6362.zip | |
Merge pull request #13081 from r00ster91/docs
fix(text): hyphenation and other fixes
Diffstat (limited to 'test/behavior/array.zig')
| -rw-r--r-- | test/behavior/array.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/array.zig b/test/behavior/array.zig index 54f87927f5..ab084ff30a 100644 --- a/test/behavior/array.zig +++ b/test/behavior/array.zig @@ -564,7 +564,7 @@ test "type coercion of pointer to anon struct literal to pointer to array" { comptime try S.doTheTest(); } -test "array with comptime only element type" { +test "array with comptime-only element type" { const a = [_]type{ u32, i32 }; try testing.expect(a[0] == u32); try testing.expect(a[1] == i32); |
