aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/054_manypointers.zig
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
commit8bb916d7debcace9f66cd290df78ab940663503b (patch)
tree62bb8a46e302dca66497025adb48bec92a9465c5 /exercises/054_manypointers.zig
parent8ebc7009c1767e804806725d95d67b86f75d6e69 (diff)
parentdc476a6980918bf34588620c82ff887ee6867cd6 (diff)
Merge branch 'main' of github.com:ratfactor/ziglings into main
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!