diff options
author | Martin Kimmerle <dev@256k.de> | 2018-11-15 10:46:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 10:46:14 +0000 |
commit | 677ab0252bc99f06826d79d96f7c3312cfa577d9 (patch) | |
tree | 410be1ac1d1731d776bf429c7f862c00416c56bb /perl6.html.markdown | |
parent | 76e5f436dfed7d3fcdbe4911091fc2a0231eeca5 (diff) |
[fix] perl6: $n -> $m
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r-- | perl6.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown index 04f9c6e3..7c776db4 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -246,7 +246,7 @@ sub mutate($n is rw) { } my $m = 42; -mutate $m; # $n is now 43 ! +mutate $m; # $m is now 43 ! ## This works because we are passing the container $m to mutate. If we try ## to just pass a number instead of passing a variable it won't work because |