aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <[email protected]>2021-08-17 00:28:40 -0700
committerunknown <[email protected]>2021-08-17 00:28:40 -0700
commit01c9f2a79f3111190df9f0368521aecb333d9f7e (patch)
tree4f152d8f0c8b753d72f03bfa071e774ead416851
parent162f84133d911faab41192d8d1d1c5ec9a1ed882 (diff)
downloadziglings-01c9f2a79f3111190df9f0368521aecb333d9f7e.tar.xz
ziglings-01c9f2a79f3111190df9f0368521aecb333d9f7e.zip
feat: More descriptive definition
-rw-r--r--exercises/015_for.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/015_for.zig b/exercises/015_for.zig
index 2ce930e..4c87a05 100644
--- a/exercises/015_for.zig
+++ b/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| {
//