diff options
author | Andreas König <a.koenig@mind.de> | 2002-11-16 17:29:14 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-11-16 19:52:54 +0000 |
commit | 899914caadddae9f40c2da9fd2949220633c94e1 (patch) | |
tree | 309e3d11796e6c64f813e470364e30d6c3c94247 /pod | |
parent | c5ab0850d11c51d3e7b48a5a420612220e590022 (diff) | |
download | perl-899914caadddae9f40c2da9fd2949220633c94e1.tar.gz |
Typo in perl58delta
Message-ID: <m3u1ihjzxx.fsf@k242.linux.bogus>
p4raw-id: //depot/perl@18147
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl58delta.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perl58delta.pod b/pod/perl58delta.pod index 46b50f00d8..9b9e529593 100644 --- a/pod/perl58delta.pod +++ b/pod/perl58delta.pod @@ -678,10 +678,10 @@ returns the number of slept seconds. =item * -The printf() and sprintf() now support parameter reordering using the +printf() and sprintf() now support parameter reordering using the C<%\d+\$> and C<*\d+\$> syntaxes. For example - print "%2\$s %1\$s\n", "foo", "bar"; + printf "%2\$s %1\$s\n", "foo", "bar"; will print "bar foo\n". This feature helps in writing internationalised software, and in general when the order |