From: Rafael Garcia-Suarez Date: Tue, 27 Nov 2007 11:15:37 +0000 (+0000) Subject: Typo, found by Scott Lanning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d8a2d19be36bd2b7d656b12f40c43c50690639ee;p=p5sagit%2Fp5-mst-13.2.git Typo, found by Scott Lanning p4raw-id: //depot/perl@32521 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 8a84557..529495f 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -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.