Typo, found by Scott Lanning
Rafael Garcia-Suarez [Tue, 27 Nov 2007 11:15:37 +0000 (11:15 +0000)]
p4raw-id: //depot/perl@32521

pod/perlfunc.pod

index 8a84557..529495f 100644 (file)
@@ -5791,7 +5791,7 @@ So:
 would use C<$a> for the width, C<$b> for the precision and C<$c>
 as the value to format, while:
 
-  print '<%*1$.*s>', $a, $b;
+  printf '<%*1$.*s>', $a, $b;
 
 would use C<$a> for the width and the precision, and C<$b> as the
 value to format.