summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2016-04-20 10:49:23 +1000
committerTony Cook <tony@develop-help.com>2016-04-20 10:49:23 +1000
commit319b236e2ed58e5be687a549dd0b94342cacd751 (patch)
tree26de7c49b744d94cffb704d2ef5fe730dbf40da5
parent9a10913bc567c79302e241ca82c99909c5cb022a (diff)
downloadperl-319b236e2ed58e5be687a549dd0b94342cacd751.tar.gz
[perl #127936] fix typo
-rw-r--r--pod/perldelta.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index c73074edc9..f18a696c77 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -81,7 +81,7 @@ the C<bigint> pragma, or the C<Bit::Vector> module from CPAN.
=head2 printf and sprintf now allow reordered precision arguments
-That is, C<< sprintf '|%.*2$|', 2, 3 >> now returns C<|002|>. This extends
+That is, C<< sprintf '|%.*2$d|', 2, 3 >> now returns C<|002|>. This extends
the existing reordering mechanism (which allows reordering for arguments
that are used as format fields, widths, and vector separators).