Subject: | Typo in POD |
http://search.cpan.org/~evdb/HTTP-Async-0.09/lib/HTTP/Async.pm
In the synopsis, the code example after the text "OR do something else
if there is no response ready:" contains a bug. There is an open curly
brace where there should be a close curly brace.
if ( my $response = $async->next_response ) {
# deal with $response
} else {
# do something else
{ <--- here
:-)