diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-23 13:43:32 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-10-23 13:43:32 +0000 |
commit | 31acd473c0867b8adcdd631d32cf02f4d7399660 (patch) | |
tree | 1782c38858a88a0fe6c861bc116581044baaaecc /pod | |
parent | 8527b78a004c229c7c96b21f4dab832841d31136 (diff) | |
download | perl-31acd473c0867b8adcdd631d32cf02f4d7399660.tar.gz |
Document that the %#X printf format prefixes the output with 0X, not 0x.
p4raw-id: //depot/perl@29093
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlfunc.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 63d7399cc9..39201531f6 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -5557,8 +5557,8 @@ one or more of: + prefix positive number with a plus sign - left-justify within the field 0 use zeros, not spaces, to right-justify - # prefix non-zero octal with "0", non-zero hex with "0x", - non-zero binary with "0b" + # prefix non-zero octal with "0", non-zero hex with "0x" + or "0X", non-zero binary with "0b" For example: |