diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-10-18 19:04:12 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-10-18 19:04:12 -0400 |
commit | 4147a9a39b362468cc6f16c8ce751ee3481321f4 (patch) | |
tree | fb943763fbd1b55838aee2334d36c569dd3b9341 /exercises | |
parent | 85cd82e673bc635b71de271e64c0d2ceb6f3a9ea (diff) | |
download | ziglings-4147a9a39b362468cc6f16c8ce751ee3481321f4.tar.gz ziglings-4147a9a39b362468cc6f16c8ce751ee3481321f4.tar.bz2 ziglings-4147a9a39b362468cc6f16c8ce751ee3481321f4.tar.xz ziglings-4147a9a39b362468cc6f16c8ce751ee3481321f4.zip |
Removed confusing explanation from 076
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/076_sentinels.zig | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/exercises/076_sentinels.zig b/exercises/076_sentinels.zig index 6d1f6f8..5d5f70e 100644 --- a/exercises/076_sentinels.zig +++ b/exercises/076_sentinels.zig @@ -59,10 +59,8 @@ pub fn main() void { // demonstrate how they are similar and different. // // (It turns out that the array prints completely, including - // the sentinel 0 in the middle. The many-item pointer must - // stop at the first sentinel value. The difference is simply - // that arrays have a known length and many-item pointers - // don't.) + // the sentinel 0 in the middle. The many-item pointer stops + // at the first sentinel value.) printSequence(nums); printSequence(ptr); |