diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2016-06-14 17:26:00 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2016-06-14 17:26:00 +0100 |
commit | a1e5c56130766aa646e4153d1f3ea60310a818d0 (patch) | |
tree | ab0530c0ca2209738e7c133091158b76d21e2dd3 /cpan/JSON-PP/bin/json_pp | |
parent | ad96436a129f2e21607a1a5b00e1924ec0ed9cd1 (diff) | |
download | perl-a1e5c56130766aa646e4153d1f3ea60310a818d0.tar.gz |
Update JSON-PP to CPAN version 2.27400
[DELTA]
2.27400 2016-04-23
[JSON::PP] appleid and merged long term neglected patches & PRs.
thanks to charsbar
- document patches
by AM909, leon[at]astray.com, dsteinbrunner, jwilk, alfiedotwtf
- modified Makefile.PL to set UNINST=1 if needed on old perls
by dagolden
- decode decimals to Perl's internal NV type
by dagolden
see to https://github.com/makamaka/JSON-PP/commits/master
Diffstat (limited to 'cpan/JSON-PP/bin/json_pp')
-rw-r--r-- | cpan/JSON-PP/bin/json_pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/JSON-PP/bin/json_pp b/cpan/JSON-PP/bin/json_pp index df9d243eba..3362decb90 100644 --- a/cpan/JSON-PP/bin/json_pp +++ b/cpan/JSON-PP/bin/json_pp @@ -32,7 +32,7 @@ if ( $version ) { $json_opt = '' if $json_opt eq '-'; -my @json_opt = grep { $allow_json_opt{ $_ } or die "'$_' is invalid json opttion" } split/,/, $json_opt; +my @json_opt = grep { $allow_json_opt{ $_ } or die "'$_' is not a valid json option" } split/,/, $json_opt; my %F = ( 'json' => sub { |