diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-08-30 17:55:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 17:55:32 -0400 |
commit | 79b92d15b85848f85ea77bfb93018472ce45579c (patch) | |
tree | 7d1b35f1d5f6cf0a3c1ffd9db14e818259b56b26 | |
parent | 63f25f7a73c7405087a1e6ac518c7caa58ac2826 (diff) | |
download | ziglings-79b92d15b85848f85ea77bfb93018472ce45579c.tar.gz ziglings-79b92d15b85848f85ea77bfb93018472ce45579c.tar.bz2 ziglings-79b92d15b85848f85ea77bfb93018472ce45579c.tar.xz ziglings-79b92d15b85848f85ea77bfb93018472ce45579c.zip |
Update 052_slices.zig
-rw-r--r-- | exercises/052_slices.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/052_slices.zig b/exercises/052_slices.zig index 3ee5383..af5930b 100644 --- a/exercises/052_slices.zig +++ b/exercises/052_slices.zig @@ -24,7 +24,7 @@ // first item at x and the last item at y-1. You can leave the y // off to get "the rest of the items". // -// Notice that the type of a slice on an array of u8 items is []u8. +// The type of a slice on an array of u8 items is []u8. // const std = @import("std"); |