--- CBOR-XS/XS.pm 2013/10/29 22:04:52 1.16 +++ CBOR-XS/XS.pm 2013/11/17 05:26:14 1.18 @@ -68,7 +68,7 @@ use common::sense; -our $VERSION = 0.07; +our $VERSION = 0.08; our @ISA = qw(Exporter); our @EXPORT = qw(encode_cbor decode_cbor); @@ -457,10 +457,10 @@ There is no way to distinguish CBOR from other formats programmatically. To make it easier to distinguish CBOR from other formats, the CBOR specification has a special "magic string" that can be -prepended to any CBOR string without changing it's meaning. +prepended to any CBOR string without changing its meaning. This string is available as C<$CBOR::XS::MAGIC>. This module does not -prepend this string tot he CBOR data it generates, but it will ignroe it +prepend this string to the CBOR data it generates, but it will ignore it if present, so users can prepend this string as a "file type" indicator as required.