summaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-03-15 21:01:20 -0600
committerKarl Williamson <khw@cpan.org>2021-03-29 08:19:23 -0600
commit43035e2886d562a7e19463f4eb7600123b3c0de4 (patch)
tree57bbaba7282744c83f6535a948f833545f44a5b8 /pp.c
parent99155265b6644bc3178a61cd413e989b2ecf90d9 (diff)
downloadperl-43035e2886d562a7e19463f4eb7600123b3c0de4.tar.gz
pp.c: Fix comment
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.c b/pp.c
index df29cf890c..d365afea4c 100644
--- a/pp.c
+++ b/pp.c
@@ -1997,7 +1997,7 @@ 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
+ * the purposes of shifting, then cast back to signed. This is very
* different from Raku:
*
* $ raku -e 'say -2 +< 5'