--- CBOR-XS/XS.pm 2021/05/08 07:08:12 1.82 +++ CBOR-XS/XS.pm 2023/09/07 23:52:24 1.88 @@ -66,7 +66,7 @@ use common::sense; -our $VERSION = 1.83; +our $VERSION = 1.86; our @ISA = qw(Exporter); our @EXPORT = qw(encode_cbor decode_cbor); @@ -218,7 +218,7 @@ resulting data structure might be unusable. Detecting shared values incurs a runtime overhead when values are encoded -that have a reference counter large than one, and might unnecessarily +that have a reference counter larger than one, and might unnecessarily increase the encoded size, as potentially shared values are encoded as shareable whether or not they are actually shared. @@ -475,7 +475,7 @@ if a full CBOR object is available, but is much more efficient. It basically works by parsing as much of a CBOR string as possible - if -the CBOR data is not complete yet, the pasrer will remember where it was, +the CBOR data is not complete yet, the parser will remember where it was, to be able to restart when more data has been accumulated. Once enough data is available to either decode a complete CBOR value or raise an error, a real decode will be attempted. @@ -637,8 +637,7 @@ =item Types::Serialiser::true, Types::Serialiser::false, Types::Serialiser::error These special values become CBOR true, CBOR false and CBOR undefined -values, respectively. You can also use C<\1>, C<\0> and C<\undef> directly -if you want. +values, respectively. =item other blessed objects