diff --git a/exercises/006_strings.zig b/exercises/006_strings.zig index 8ff98f5..5c4d951 100644 --- a/exercises/006_strings.zig +++ b/exercises/006_strings.zig @@ -9,7 +9,7 @@ // // Is the same as: // -// const foo = [_]u8{ 'H', 'e', 'l', 'l', 'o' }; +// const foo = &[_:0]u8{ 'H', 'e', 'l', 'l', 'o' }; // // Notice how individual characters use single quotes ('H') and // strings use double quotes ("H"). These are not interchangeable!