From 677ab0252bc99f06826d79d96f7c3312cfa577d9 Mon Sep 17 00:00:00 2001 From: Martin Kimmerle Date: Thu, 15 Nov 2018 10:46:14 +0000 Subject: [PATCH] [fix] perl6: $n -> $m --- perl6.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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