aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorr00ster91 <r00ster91@proton.me>2022-10-05 20:58:23 +0200
committerr00ster91 <r00ster91@proton.me>2022-10-05 21:19:30 +0200
commit51d9db856978610c24b3fed50a9550455a2eb64b (patch)
tree90c73872df36318779a8e23682d2d7b774ad5e19 /test/behavior/struct.zig
parent654e0b6679f3436bacbf685223d6ab68f707a62f (diff)
downloadzig-51d9db856978610c24b3fed50a9550455a2eb64b.tar.gz
zig-51d9db856978610c24b3fed50a9550455a2eb64b.zip
fix(text): hyphenate "comptime" adjectives
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index 7a650e1a33..2b9df06527 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -653,7 +653,7 @@ test "default struct initialization fields" {
.b = five,
};
if (x.a + x.b != 1239) {
- @compileError("it should be comptime known");
+ @compileError("it should be comptime-known");
}
try expect(y.a == x.a);
try expect(y.b == x.b);