This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldata: Fix too long verbatim lines
authorKarl Williamson <khw@cpan.org>
Thu, 14 Aug 2014 17:37:23 +0000 (11:37 -0600)
committerKarl Williamson <khw@cpan.org>
Thu, 14 Aug 2014 18:04:39 +0000 (12:04 -0600)
pod/perldata.pod

index fe39783..52921ca 100644 (file)
@@ -393,16 +393,16 @@ X<scalar, literal> X<scalar, constant>
 Numeric literals are specified in any of the following floating point or
 integer formats:
 
 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:
 
 You are allowed to use underscores (underbars) in numeric literals
 between digits for legibility (but not multiple underscores in a row: