summaryrefslogtreecommitdiff
path: root/lib/JSON.pm
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2022-07-19 16:24:00 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2022-07-19 16:24:00 +0900
commitc7c962a282ca30e60db54b2a9786cd3478707d9d (patch)
tree1460f0008ae23f12bc39f08279fc3019adeb753e /lib/JSON.pm
parent80e2994434f3c840ce12546351ab9fd20cdd3aaa (diff)
downloadperl-json-c7c962a282ca30e60db54b2a9786cd3478707d9d.tar.gz
perl-json-c7c962a282ca30e60db54b2a9786cd3478707d9d.tar.bz2
perl-json-c7c962a282ca30e60db54b2a9786cd3478707d9d.zip
Imported Upstream version 4.04upstream/4.04
Diffstat (limited to 'lib/JSON.pm')
-rw-r--r--lib/JSON.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/JSON.pm b/lib/JSON.pm
index 3e644cc..a90c346 100644
--- a/lib/JSON.pm
+++ b/lib/JSON.pm
@@ -9,7 +9,7 @@ BEGIN { @JSON::ISA = 'Exporter' }
@JSON::EXPORT = qw(from_json to_json jsonToObj objToJson encode_json decode_json);
BEGIN {
- $JSON::VERSION = '4.03';
+ $JSON::VERSION = '4.04';
$JSON::DEBUG = 0 unless (defined $JSON::DEBUG);
$JSON::DEBUG = $ENV{ PERL_JSON_DEBUG } if exists $ENV{ PERL_JSON_DEBUG };
}
@@ -1595,7 +1595,7 @@ argument being the object to serialise, and the second argument being the
constant string C<JSON> to distinguish it from other serialisers.
The C<FREEZE> method can return any number of values (i.e. zero or
-more). These values and the paclkage/classname of the object will then be
+more). These values and the package/classname of the object will then be
encoded as a tagged JSON value in the following format:
("classname")[FREEZE return values...]