diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-01-19 21:21:06 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-01-19 21:21:06 +0000 |
commit | 329d453aed974070d8cc031fdb6e31b1c1ae29ae (patch) | |
tree | 94e317e33cc733407befaaeaf344c0dbcae4280a /cpan/perlfaq/lib/perlfaq8.pod | |
parent | 708a028cc568da4e705e1a480442bc98518033f1 (diff) | |
download | perl-329d453aed974070d8cc031fdb6e31b1c1ae29ae.tar.gz |
Update perlfaq to CPAN version 5.0150038
[DELTA]
5.0150038 Thu 19 Jan 2012 21:10:06 +0100
* Marpa::XS updated (Jeffrey Kegler)
* Frameworks (wchristian, ranguard, bigpresh, kraih)
* Cleanup (wchristian)
* Users email (apeiron, ranguard)
Diffstat (limited to 'cpan/perlfaq/lib/perlfaq8.pod')
-rw-r--r-- | cpan/perlfaq/lib/perlfaq8.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/perlfaq/lib/perlfaq8.pod b/cpan/perlfaq/lib/perlfaq8.pod index 552e00b69c..1c7793e355 100644 --- a/cpan/perlfaq/lib/perlfaq8.pod +++ b/cpan/perlfaq/lib/perlfaq8.pod @@ -924,8 +924,8 @@ the initial telnet handshaking, then the standard dual-process approach will suffice: use IO::Socket; # new in 5.004 - my $handle = IO::Socket::INET->new('L<www.perl.com:80')> - or die "can't connect to port 80 on L<www.perl.com:> $!"; + my $handle = IO::Socket::INET->new('www.perl.com:80') + or die "can't connect to port 80 on www.perl.com $!"; $handle->autoflush(1); if (fork()) { # XXX: undef means failure select($handle); |