From 42a417f9a5a8c25b46f4b55e5361d8875b62f9ea Mon Sep 17 00:00:00 2001 From: Nick Grimshaw Date: Mon, 18 May 2026 17:29:17 +0100 Subject: [PATCH] Instruct user not to worry about sentinel syntax in `065_builtins2` --- exercises/065_builtins2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/065_builtins2.zig b/exercises/065_builtins2.zig index 4514b0b..eb8f3aa 100644 --- a/exercises/065_builtins2.zig +++ b/exercises/065_builtins2.zig @@ -99,7 +99,7 @@ pub fn main() void { // 'fields' is a slice of StructFields. Here's the declaration: // // pub const StructField = struct { - // name: [:0]const u8, + // name: [:0]const u8, // Don't worry about `:0` yet! // type: type, // default_value_ptr: ?*const anyopaque, // is_comptime: bool,