summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMartin Kimmerle <dev@256k.de>2018-11-15 10:46:14 +0000
committerGitHub <noreply@github.com>2018-11-15 10:46:14 +0000
commit677ab0252bc99f06826d79d96f7c3312cfa577d9 (patch)
tree410be1ac1d1731d776bf429c7f862c00416c56bb
parent76e5f436dfed7d3fcdbe4911091fc2a0231eeca5 (diff)
[fix] perl6: $n -> $m
-rw-r--r--perl6.html.markdown2
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