Subject: | Mistake in _uniq() |
Date: | Sun, 24 Jun 2018 12:53:20 -0700 |
To: | bug-ppr [...] rt.cpan.org |
From: | Adriano Ferreira <a.r.ferreira [...] gmail.com> |
A mistake slipped by in the latest PPR release – wouldn't it be
sub _uniq {
my %seen;
return grep {!$seen{$_}++} @_;
}
rather than
sub _uniq {
my %seen;
return grep {!$seen{$_}} @_;
}
in https://metacpan.org/source/DCONWAY/PPR-0.000017/lib/PPR.pm#L1885 and
https://metacpan.org/source/DCONWAY/PPR-0.000017/lib/PPR/X.pm#L1800 ?
Message body is not shown because it is too large.