From db7d6ea7c098c3ab442c39a3921500f45e1954cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Fro=C5=82ow?= Date: Wed, 31 Mar 2021 03:53:15 +0200 Subject: [PATCH] print below statement -> print statement below --- exercises/054_manypointers.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/054_manypointers.zig b/exercises/054_manypointers.zig index a646b49..adfea36 100644 --- a/exercises/054_manypointers.zig +++ b/exercises/054_manypointers.zig @@ -31,7 +31,7 @@ pub fn main() void { // treat a "many-item pointer" of const u8 as a string as long as // we can CONVERT IT TO A SLICE. (Hint: we do know the length!) // - // Please fix this line so the print below statement can print it: + // Please fix this line so the print statement below can print it: const zen12_string: []const u8 = zen_manyptr; // Here's the moment of truth!