aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-04-04 16:06:06 -0400
committerDave Gauer <dave@ratfactor.com>2021-04-04 16:06:06 -0400
commita7e4c043999eb120f0b6be5a4e01793a02f1e676 (patch)
tree62bb8a46e302dca66497025adb48bec92a9465c5 /exercises
parent38b6de1e7156ad8b92284273f544ab1b8a803b49 (diff)
parent487897ff6bfa6eb7f628727c4b6042820d843c8f (diff)
downloadziglings-a7e4c043999eb120f0b6be5a4e01793a02f1e676.tar.gz
ziglings-a7e4c043999eb120f0b6be5a4e01793a02f1e676.tar.bz2
ziglings-a7e4c043999eb120f0b6be5a4e01793a02f1e676.tar.xz
ziglings-a7e4c043999eb120f0b6be5a4e01793a02f1e676.zip
Merge branch 'main' of github.com:ratfactor/ziglings into main
Diffstat (limited to 'exercises')
-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!