projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e7f779c
)
Remove a spurious \n in a perltie example,
Rafael Garcia-Suarez [Tue, 8 Jun 2004 18:40:38 +0000 (18:40 +0000)]
noticed by Geoffrey Young.
p4raw-id: //depot/perl@22910
pod/perltie.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perltie.pod
b/pod/perltie.pod
index
30a0b1d
..
429a662
100644
(file)
--- 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