Subject: | Errors in documentation |
Hello,
There are a few errors in the documentation of HTTP::Proxy::BodyFilter::htmltext. In the synopsis, there is the following:
$proxy->push_filter(
mime => 'text/html',
response => HTTP::Proxy::BodyFilter::tags,
but it should be
$proxy->push_filter(
mime => 'text/html',
response => HTTP::Proxy::BodyFilter::tags->new,
There are also two small Pod errors: C<<script>> and C<<style>> instead of C<< <script> >> and C<< <style> >>.