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

index 30a0b1d..429a662 100644 (file)
@@ -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