--- CBOR-XS/XS.pm 2016/04/26 16:25:49 1.59 +++ CBOR-XS/XS.pm 2016/11/25 06:13:16 1.62 @@ -66,7 +66,7 @@ use common::sense; -our $VERSION = 1.5; +our $VERSION = 1.51; our @ISA = qw(Exporter); our @EXPORT = qw(encode_cbor decode_cbor); @@ -182,7 +182,7 @@ This means that such values will only be encoded once, and will not result in a deep cloning of the value on decode, in decoders supporting the value sharing extension. This also makes it possible to encode cyclic data -structures (which need C to ne enabled to be decoded by this +structures (which need C to be enabled to be decoded by this module). It is recommended to leave it off unless you know your @@ -442,7 +442,7 @@ subsequent calls to C or C start to parse a new CBOR value from the beginning of the C<$buffer> again. -This method can be caled at any time, but it I be called if you want +This method can be called at any time, but it I be called if you want to change your C<$buffer> or there was a decoding error and you want to reuse the C<$cbor> object for future incremental parsings. @@ -1208,7 +1208,7 @@ sub Math::BigRat::TO_CBOR { my ($n, $d) = $_[0]->parts; - # older versions of BigRat need *=1, as they not always return numbers + # older versions of BigRat need *1, as they not always return numbers $d*1 == 1 ? $n*1