aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-03-18 09:53:41 -0400
committerGitHub <noreply@github.com>2021-03-18 09:53:41 -0400
commit4ffea758a739ede9bda332d99de0f83733c529c7 (patch)
treef1d1f1cca52e5049cac44fc3b910b5ba625ac3c1
parent54f2ace51abcc0f9e135bbc7adbb43223772d87a (diff)
parentd02e5203eb2fddec06cf06f386177eb5d60c5443 (diff)
Merge pull request #39 from davidskeck/patch-1
grammatical fixes
-rw-r--r--exercises/054_manypointers.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/054_manypointers.zig b/exercises/054_manypointers.zig
index d07d88f..2242652 100644
--- a/exercises/054_manypointers.zig
+++ b/exercises/054_manypointers.zig
@@ -27,9 +27,9 @@ pub fn main() void {
// long as you keep track of the length yourself!
//
// A "string" in Zig is a pointer to an array of const u8 values
- // or a slice of const u8 values, into one, as we saw above). So,
- // we could treat a "many-item pointer" of const u8 a string as long
- // as we can CONVERT IT TO A SLICE. (Hint: we do know the length!)
+ // (or a slice of const u8 values, as we saw above). So, we could
+ // treat a "many-item pointer" of const u8 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:
const zen12_string: []const u8 = zen_manyptr;