summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2020-05-28 14:38:52 +0200
committerSawyer X <xsawyerx@cpan.org>2020-05-30 17:37:16 +0300
commit17b35041bdff13ad8301eae5df5f75578f910ce1 (patch)
tree6f3d9b27e113332f2f77eea3f4bf176f9781d466 /pp.c
parent975363793fa0bd4d9ce6722102e009c479ecf506 (diff)
downloadperl-17b35041bdff13ad8301eae5df5f75578f910ce1.tar.gz
Perl 6 -> Raku where appropriate
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp.c b/pp.c
index c3b18b57f8..df80830b79 100644
--- a/pp.c
+++ b/pp.c
@@ -1998,9 +1998,9 @@ static IV S_iv_shift(IV iv, int shift, bool left)
/* For left shifts, perl 5 has chosen to treat the value as unsigned for
* the * purposes of shifting, then cast back to signed. This is very
- * different from perl 6:
+ * different from Raku:
*
- * $ perl6 -e 'say -2 +< 5'
+ * $ raku -e 'say -2 +< 5'
* -64
*
* $ ./perl -le 'print -2 << 5'