summaryrefslogtreecommitdiff
path: root/exercises/095_for3.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-08-11 14:48:05 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-08-11 14:48:05 +0000
commit97c8bc39bc6cde4be41c2e7bace1294368d791b7 (patch)
tree18573c6cec4a8a2c5650bcc32c70ba9946b1e568 /exercises/095_for3.zig
parente2f356d95c08260e14b5f8db26b4f4a3c6a90dba (diff)
parent17f9312034aa8a040193dc7c3ec543d02b1d4b4d (diff)
Merge pull request 'Clarification in description for ranges in loops.' (#142) from i141 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/142
Diffstat (limited to 'exercises/095_for3.zig')
-rw-r--r--exercises/095_for3.zig2
1 files changed, 1 insertions, 1 deletions
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: