Просмотр исходного кода

Clarification in description for ranges in loops.

Chris Boesch 1 год назад
Родитель
Сommit
17f9312034
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/095_for3.zig

+ 1 - 1
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: