Notes in perlstyle about POD formatting, by Sébastien
[p5sagit/p5-mst-13.2.git] / pod / perlfaq5.pod
index 31db204..da725a7 100644 (file)
@@ -57,7 +57,7 @@ thing you do with them.  You can use IO::Handle:
 or IO::Socket:
 
     use IO::Socket;              # this one is kinda a pipe?
-       my $sock = IO::Socket::INET->new( 'www.example.com:80' ) ;
+       my $sock = IO::Socket::INET->new( 'www.example.com:80' );
 
     $sock->autoflush();