diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2015-02-28 13:26:44 -0600 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2015-02-28 13:26:44 -0600 |
commit | 0bcc9c48913e88bd00c81cd32a5eba7960be4ae0 (patch) | |
tree | 4d14c0b6a5af30fecaa59ef7b7cd8462ccd678b5 | |
parent | a8592af4e8a5a2381dd55344b6af8de35df673d1 (diff) | |
parent | 862d90da8f753222a518d5ffb4631b46f9dffc91 (diff) |
Merge pull request #977 from brxfork/patch-1
Update 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 72faecb6..3f1cab2e 100644 --- a/perl6.html.markdown +++ b/perl6.html.markdown @@ -201,7 +201,7 @@ sub mutate($n is rw) { my $x = 42; sub x-store() is rw { $x } x-store() = 52; # in this case, the parentheses are mandatory - # (else Perl 6 thinks `mod` is an identifier) + # (else Perl 6 thinks `x-store` is an identifier) say $x; #=> 52 |