diff options
author | Steven Schubiger <schubiger@cpan.org> | 2005-10-31 23:48:27 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-11-10 10:52:51 +0000 |
commit | 4358a253560c226dd674c77f83b913c071c4fa25 (patch) | |
tree | d5881aefffcd9b943217161889e849dfb97df0ec /pod/perlfaq5.pod | |
parent | 42d1cefd9a529012253aff0d502edf7a4f6a6ac3 (diff) | |
download | perl-4358a253560c226dd674c77f83b913c071c4fa25.tar.gz |
remove whitespace preceding semicolon in docs
Message-ID: <20051031214827.GH24416@accognoscere.homeunix.org>
p4raw-id: //depot/perl@26073
Diffstat (limited to 'pod/perlfaq5.pod')
-rw-r--r-- | pod/perlfaq5.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod index 31db204129..da725a70bb 100644 --- a/pod/perlfaq5.pod +++ b/pod/perlfaq5.pod @@ -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(); |