summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-09-15 20:06:39 -0600
committerKarl Williamson <khw@cpan.org>2015-09-15 20:08:19 -0600
commitd259adbb441ebed08c8b8dfe32cd7adf7c2359cb (patch)
treeb876b5118c7b1a665d270a47f3c065ee3f83c593
parent14735530c9ee0afb050f13df6d310f68bc909053 (diff)
downloadperl-d259adbb441ebed08c8b8dfe32cd7adf7c2359cb.tar.gz
Fix too-long verbatim lines in perlfunc
These were added by 29b04a70d1bf9a10be65363f3f8d6dae44cfa6fc
-rw-r--r--pod/perlfunc.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index b5fb4f1813..1759ad15dd 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -7410,11 +7410,11 @@ value to format.
Here are some more examples; be aware that when using an explicit
index, the C<$> may need escaping:
- printf "%2\$d %d\n", 12, 34; # will print "34 12\n"
- printf "%2\$d %d %d\n", 12, 34; # will print "34 12 34\n"
- printf "%3\$d %d %d\n", 12, 34, 56; # will print "56 12 34\n"
- printf "%2\$*3\$d %d\n", 12, 34, 3; # will print " 34 12\n"
- printf "%*1\$.*f\n", 4, 5, 10; # will print "5.0000\n"
+ printf "%2\$d %d\n", 12, 34; # will print "34 12\n"
+ printf "%2\$d %d %d\n", 12, 34; # will print "34 12 34\n"
+ printf "%3\$d %d %d\n", 12, 34, 56; # will print "56 12 34\n"
+ printf "%2\$*3\$d %d\n", 12, 34, 3; # will print " 34 12\n"
+ printf "%*1\$.*f\n", 4, 5, 10; # will print "5.0000\n"
=back