From: Rafael Garcia-Suarez Date: Tue, 8 Jun 2004 18:40:38 +0000 (+0000) Subject: Remove a spurious \n in a perltie example, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7687bb236c3854f2aa4d6ffb59b02bfa3d417c57;p=p5sagit%2Fp5-mst-13.2.git Remove a spurious \n in a perltie example, noticed by Geoffrey Young. p4raw-id: //depot/perl@22910 --- diff --git a/pod/perltie.pod b/pod/perltie.pod index 30a0b1d..429a662 100644 --- a/pod/perltie.pod +++ b/pod/perltie.pod @@ -876,7 +876,7 @@ passed to the printf function. sub PRINTF { shift; my $fmt = shift; - print sprintf($fmt, @_)."\n"; + print sprintf($fmt, @_); } =item READ this, LIST