In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e9b90335606dcae569679dd71fa9a380955fb8f7?hp=56c35cf6201e8e4c101fea1c8bc4878b17afd323>
- Log ----------------------------------------------------------------- commit e9b90335606dcae569679dd71fa9a380955fb8f7 Author: Father Chrysostomos <spr...@cpan.org> Date: Thu Jul 20 18:55:44 2017 -0700 op.c: Confusing comment typo ----------------------------------------------------------------------- Summary of changes: op.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op.c b/op.c index c6b5ec735f..fedaf67cc7 100644 --- a/op.c +++ b/op.c @@ -11130,7 +11130,7 @@ Perl_ck_sort(pTHX_ OP *o) } /* for sort { X } ..., where X is one of - * $a <=> $b, $b <= $a, $a cmp $b, $b cmp $a + * $a <=> $b, $b <=> $a, $a cmp $b, $b cmp $a * elide the second child of the sort (the one containing X), * and set these flags as appropriate OPpSORT_NUMERIC; -- Perl5 Master Repository