diff options
Diffstat (limited to 'pod/perldiag.pod')
-rw-r--r-- | pod/perldiag.pod | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 6d6322adac..cf0c62a6f6 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1534,17 +1534,6 @@ you called it with no args and both C<$@> and C<$_> were empty. See Server error. -=item Dot after %s literal is concatenation - -(D) You had something like 0x123.456 in your code. This is currently -parsed as the hexadecimal number 0x123 concatenated with the decimal -number 456, not 0x123 + 0x456/0x1000 -- we only support decimal -decimal points. If you meant it to be a fraction, you'll need to use -Math::BigFloat's from_hex (or friends). If you meant it to be -concatenation, just put spaces around the dot to make it clearer. In -5.14.0, we expect to change this to mean a hex fraction. (Of course, -everything above applies to octal and binary constants, too.) - =item %s does not define %s::VERSION--version check failed (F) You said something like "use Module 42" but the Module did not |