Subject: | Capitalization in PerlDoc synopsis for Multi.pm |
Date: | Wed, 11 Sep 2013 09:16:42 -0700 |
To: | bug-WWW-Curl [...] rt.cpan.org |
From: | Toby McLaughlin <toby [...] jarpy.net> |
Hello,
The example in the synopsis for Multi.pm doesn't run for me because
the "use" statement has a capitalization typo. As a neophyte user of
WWW:Curl, I was mildly confused. I'd like to save others the
inconvenience.
A patch follows.
Thanks!
Toby.
index d6f6a95..beeda31 100644
--- a/lib/WWW/Curl/Multi.pm
+++ b/lib/WWW/Curl/Multi.pm
@@ -12,7 +12,7 @@ WWW::Curl::Multi - Perl extension interface for libcurl
=head1 SYNOPSIS
- use WWW::CURL::Multi;
+ use WWW::Curl::Multi;
my $curlm = new WWW::Curl::Multi;
$curlm->add_handle($curl);
$curlm->perform;