summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine <ap@oire.me>2018-11-15 22:02:02 +0200
committerGitHub <noreply@github.com>2018-11-15 22:02:02 +0200
commit3b84d3e389a8b9bddc15ede41f0d430251182ea1 (patch)
tree410be1ac1d1731d776bf429c7f862c00416c56bb
parent76e5f436dfed7d3fcdbe4911091fc2a0231eeca5 (diff)
parent677ab0252bc99f06826d79d96f7c3312cfa577d9 (diff)
Merge pull request #3393 from myrdd/patch-1
[perl6/en] [fix] $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