diff options
| author | unknown <[email protected]> | 2021-08-17 00:28:40 -0700 |
|---|---|---|
| committer | unknown <[email protected]> | 2021-08-17 00:28:40 -0700 |
| commit | 01c9f2a79f3111190df9f0368521aecb333d9f7e (patch) | |
| tree | 4f152d8f0c8b753d72f03bfa071e774ead416851 | |
| parent | 162f84133d911faab41192d8d1d1c5ec9a1ed882 (diff) | |
| download | ziglings-01c9f2a79f3111190df9f0368521aecb333d9f7e.tar.xz ziglings-01c9f2a79f3111190df9f0368521aecb333d9f7e.zip | |
feat: More descriptive definition
| -rw-r--r-- | exercises/015_for.zig | 4 |
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| { // |
