summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'perl6.html.markdown')
-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