Misc Pod Nits.
Rafael Garcia-Suarez [Sun, 29 Jun 2003 19:18:43 +0000 (19:18 +0000)]
p4raw-id: //depot/perl@19886

ext/B/B.pm
pod/perlrun.pod

index ad53e9d..3dfb2c9 100644 (file)
@@ -370,7 +370,7 @@ which can then be followed with the other access methods.
 
 Returns the SV object corresponding to the C variable C<amagic_generation>.
 
-=item C<init_av>
+=item init_av
 
 Returns the AV object (i.e. in class B::AV) representing INIT blocks.
 
@@ -394,7 +394,7 @@ Returns the AV object (i.e. in class B::AV) of the global comppadlist.
 
 Only when perl was compiled with ithreads.
 
-=item C<main_cv>
+=item main_cv
 
 Return the (faked) CV corresponding to the main part of the Perl
 program.
index 324bd8c..6b01d6c 100644 (file)
@@ -1116,13 +1116,13 @@ order as 5.8.0).  "Pre-5.8.1" means, among other things, that hash
 keys will be ordered the same between different runs of Perl.
 
 The default behaviour is to randomise unless the PERL_HASH_SEED is set.
-If Perl has been compiled with the -DUSE_HASH_SEED_EXPLICIT the default
+If Perl has been compiled with C<-DUSE_HASH_SEED_EXPLICIT>, the default
 behaviour is B<not> to randomise unless the PERL_HASH_SEED is set.
 
 If PERL_HASH_SEED is unset or set to a non-numeric string, Perl uses
 the pseudorandom seed supplied by the operating system and libraries.
 If unset, each different run of Perl will have different ordering of
-the outputs of keys(), values, and each().
+the outputs of keys(), values(), and each().
 
 See L<perlsec/"Algorithmic Complexity Attacks"> for more information.