summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--exercises/078_sentinels3.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/078_sentinels3.zig b/exercises/078_sentinels3.zig
index bad4810..1e443e6 100644
--- a/exercises/078_sentinels3.zig
+++ b/exercises/078_sentinels3.zig
@@ -8,7 +8,7 @@
// Yes, we can. Zig's @ptrCast() builtin can do this. Check out
// the signature:
//
-// @ptrCast(comptime DestType: type, value: anytype) DestType
+// @ptrCast(value: anytype) anytype
//
// See if you can use it to solve the same many-item pointer
// problem, but without needing a length!