summaryrefslogtreecommitdiff
path: root/pod/perltie.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-06-08 18:40:38 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-06-08 18:40:38 +0000
commit7687bb236c3854f2aa4d6ffb59b02bfa3d417c57 (patch)
treea0755bfcb85113de2d33e9e2172fd7c73bb41048 /pod/perltie.pod
parente7f779c800b16cb35dd756b0caf53fb5591bd201 (diff)
downloadperl-7687bb236c3854f2aa4d6ffb59b02bfa3d417c57.tar.gz
Remove a spurious \n in a perltie example,
noticed by Geoffrey Young. p4raw-id: //depot/perl@22910
Diffstat (limited to 'pod/perltie.pod')
-rw-r--r--pod/perltie.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perltie.pod b/pod/perltie.pod
index 30a0b1df20..429a662770 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