In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/86c170d91dbbbcdb41664cd9419732ad10d6056b?hp=1c13323db058039bc6b70d5c08ae06a66e96b211>
- Log ----------------------------------------------------------------- commit 86c170d91dbbbcdb41664cd9419732ad10d6056b Author: James E Keenan <jkee...@cpan.org> Date: Thu Nov 1 17:17:03 2018 -0400 Correct spelling error ----------------------------------------------------------------------- Summary of changes: ext/POSIX/t/posix.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/POSIX/t/posix.t b/ext/POSIX/t/posix.t index e33e047b8d..1be377c62b 100644 --- a/ext/POSIX/t/posix.t +++ b/ext/POSIX/t/posix.t @@ -307,7 +307,7 @@ SKIP: { skip("locales not available", 26) unless locales_enabled(qw(NUMERIC MONETARY)); skip("localeconv() not available", 26) unless $Config{d_locconv}; my $conv = localeconv; - is(ref $conv, 'HASH', 'localconv returns a hash reference'); + is(ref $conv, 'HASH', 'localeconv returns a hash reference'); foreach (qw(decimal_point thousands_sep grouping int_curr_symbol currency_symbol mon_decimal_point mon_thousands_sep -- Perl5 Master Repository