From 4147a9a39b362468cc6f16c8ce751ee3481321f4 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Mon, 18 Oct 2021 19:04:12 -0400 Subject: Removed confusing explanation from 076 --- exercises/076_sentinels.zig | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'exercises/076_sentinels.zig') 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); -- cgit v1.2.3-ZIG