diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-08 18:40:38 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-08 18:40:38 +0000 |
commit | 7687bb236c3854f2aa4d6ffb59b02bfa3d417c57 (patch) | |
tree | a0755bfcb85113de2d33e9e2172fd7c73bb41048 /pod/perltie.pod | |
parent | e7f779c800b16cb35dd756b0caf53fb5591bd201 (diff) | |
download | perl-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.pod | 2 |
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 |