aboutsummaryrefslogtreecommitdiff
path: root/exercises/054_manypointers.zig
diff options
context:
space:
mode:
authorRoman FroĊ‚ow <rofrol@gmail.com>2021-03-31 03:53:15 +0200
committerGitHub <noreply@github.com>2021-03-31 03:53:15 +0200
commit7861524a1c79c60dddddec8559ccdfbea38a0d9c (patch)
treebfb9578601c268e0fbfb3bb0f25555edaeaa742a /exercises/054_manypointers.zig
parentbfa0f08795890d32b949001a50d8ff947d1bda33 (diff)
downloadziglings-7861524a1c79c60dddddec8559ccdfbea38a0d9c.tar.gz
ziglings-7861524a1c79c60dddddec8559ccdfbea38a0d9c.tar.bz2
ziglings-7861524a1c79c60dddddec8559ccdfbea38a0d9c.tar.xz
ziglings-7861524a1c79c60dddddec8559ccdfbea38a0d9c.zip
print below statement -> print statement below
Diffstat (limited to 'exercises/054_manypointers.zig')
-rw-r--r--exercises/054_manypointers.zig2
1 files changed, 1 insertions, 1 deletions
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!