From 17f9312034aa8a040193dc7c3ec543d02b1d4b4d Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sun, 11 Aug 2024 16:29:14 +0200 Subject: [PATCH] Clarification in description for ranges in loops. --- exercises/095_for3.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/095_for3.zig b/exercises/095_for3.zig index e4c4662..0d4f42f 100644 --- a/exercises/095_for3.zig +++ b/exercises/095_for3.zig @@ -28,7 +28,7 @@ // 0..10 is a range from 0 to 9 // 1..4 is a range from 1 to 3 // -// At the moment, ranges are only supported in 'for' loops. +// At the moment, ranges in loops are only supported in 'for' loops. // // Perhaps you recall Exercise 13? We were printing a numeric // sequence like so: