aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/array.zig
diff options
context:
space:
mode:
authorr00ster91 <r00ster91@proton.me>2022-10-03 19:52:39 +0200
committerr00ster91 <r00ster91@proton.me>2022-10-05 21:19:10 +0200
commit654e0b6679f3436bacbf685223d6ab68f707a62f (patch)
tree3d643918bf5ab0e1a0754eeca210ee63cdd452e4 /test/behavior/array.zig
parent34835bbbcfe81cc87e823d14dc9b25e698ad5edc (diff)
downloadzig-654e0b6679f3436bacbf685223d6ab68f707a62f.tar.gz
zig-654e0b6679f3436bacbf685223d6ab68f707a62f.zip
fix(text): hyphenation and other fixes
Diffstat (limited to 'test/behavior/array.zig')
-rw-r--r--test/behavior/array.zig2
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);