Merge pull request #980 from brxfork/patch-2

Perl6, minor change in comments
This commit is contained in:
ven 2015-03-02 09:19:50 +01:00
commit 2fc71700da

View File

@ -283,7 +283,7 @@ for @array -> $variable {
} }
# As we saw with given, for's default "current iteration" variable is `$_`. # As we saw with given, for's default "current iteration" variable is `$_`.
# That means you can use `when` in a `for` just like you were in a when. # That means you can use `when` in a `for` just like you were in a `given`.
for @array { for @array {
say "I've got $_"; say "I've got $_";