diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-05-18 19:50:18 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2026-05-18 19:50:18 +0200 |
| commit | 926fc04d81c62832604c5ebb6bed1f3b01d6189e (patch) | |
| tree | 1f396c3951babf646489649a3a1cbb0feca6dc48 /exercises | |
| parent | 6b8bbfd980a2519c9cba1f3ef9839a6971cb2231 (diff) | |
| parent | 42a417f9a5a8c25b46f4b55e5361d8875b62f9ea (diff) | |
Merge pull request 'Instruct user not to worry about sentinel syntax in `065_builtins2`' (#425) from nickgrim/exercises:sentinel_warning into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/425
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/065_builtins2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
