From 31acd473c0867b8adcdd631d32cf02f4d7399660 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Mon, 23 Oct 2006 13:43:32 +0000 Subject: [PATCH] Document that the %#X printf format prefixes the output with 0X, not 0x. p4raw-id: //depot/perl@29093 --- pod/perlfunc.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 63d7399..3920153 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: -- 2.7.4