summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-08-14 11:37:23 -0600
committerKarl Williamson <khw@cpan.org>2014-08-14 12:04:39 -0600
commita94ee3a1678e204b7e436950171bf0c28ea554f5 (patch)
treeb7db71466162132b29847f2ed06507e1a367c6a0 /pod
parent61e61fbc49c95894c46dd5128133731fc2092e07 (diff)
downloadperl-a94ee3a1678e204b7e436950171bf0c28ea554f5.tar.gz
perldata: Fix too long verbatim lines
Diffstat (limited to 'pod')
-rw-r--r--pod/perldata.pod20
1 files changed, 10 insertions, 10 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod
index fe39783dd3..52921cade4 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -393,16 +393,16 @@ X<scalar, literal> X<scalar, constant>
Numeric literals are specified in any of the following floating point or
integer formats:
- 12345
- 12345.67
- .23E-10 # a very small number
- 3.14_15_92 # a very important number
- 4_294_967_296 # underscore for legibility
- 0xff # hex
- 0xdead_beef # more hex
- 0377 # octal (only numbers, begins with 0)
- 0b011011 # binary
- 0x1.999ap-4 # hexadecimal floating point (the 'p' is required)
+ 12345
+ 12345.67
+ .23E-10 # a very small number
+ 3.14_15_92 # a very important number
+ 4_294_967_296 # underscore for legibility
+ 0xff # hex
+ 0xdead_beef # more hex
+ 0377 # octal (only numbers, begins with 0)
+ 0b011011 # binary
+ 0x1.999ap-4 # hexadecimal floating point (the 'p' is required)
You are allowed to use underscores (underbars) in numeric literals
between digits for legibility (but not multiple underscores in a row: