Re: [patch pod/perlport.pod] wrong escape
[p5sagit/p5-mst-13.2.git] / pod / perlfaq4.pod
index f9f722b..f602d24 100644 (file)
@@ -136,15 +136,13 @@ functions is that it works with numbers of ANY size, that it is
 optimized for speed on some operations, and for at least some
 programmers the notation might be familiar.
 
-=over 4
-
 =item B<How do I convert Hexadecimal into decimal:>
 
 Using perl's built in conversion of 0x notation:
 
     $int = 0xDEADBEEF;
     $dec = sprintf("%d", $int);
-
 Using the hex function:
 
     $int = hex("DEADBEEF");
@@ -249,7 +247,6 @@ Using Bit::Vector:
 The remaining transformations (e.g. hex -> oct, bin -> hex, etc.)
 are left as an exercise to the inclined reader.
 
-=back
 
 =head2 Why doesn't & work the way I want it to?