Subject: | Incorrect POD concerning the resolution of warning "Parsing of undecoded UTF-8 will give garbage when decoding entities" |
The POD of this module includes a section on how to avoid this warning:
"Parsing of undecoded UTF-8 will give garbage when decoding entities"
The advice given is to "use Encode::encode_utf8() on the data before
feeding it to the $p->parse()".
Surely, that should be "use Encode::decode_utf8()" instead?