diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-11-27 11:15:37 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-11-27 11:15:37 +0000 |
commit | d8a2d19be36bd2b7d656b12f40c43c50690639ee (patch) | |
tree | 34e9abdc6c4fe2f335c083da7fbe4da3b698041f | |
parent | b78b80645dc3a8b1b4d25521683d6f20bb5375f3 (diff) | |
download | perl-d8a2d19be36bd2b7d656b12f40c43c50690639ee.tar.gz |
Typo, found by Scott Lanning
p4raw-id: //depot/perl@32521
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 8a845572d0..529495f5a9 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. |