Browse Source

feat: More descriptive definition

unknown 4 years ago
parent
commit
01c9f2a79f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      exercises/015_for.zig

+ 2 - 2
exercises/015_for.zig

@@ -1,6 +1,6 @@
 //
-// Behold the 'for' loop! It lets you execute code for each
-// member of an array:
+// Behold the 'for' loop! For loops let you execute code for each
+// element of an array:
 //
 //     for (items) |item| {
 //