From: Rafael Garcia-Suarez Date: Sun, 29 Jun 2003 19:18:43 +0000 (+0000) Subject: Misc Pod Nits. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e13efe3ceea1a416bee536860751edb48e6bfcb3;p=p5sagit%2Fp5-mst-13.2.git Misc Pod Nits. p4raw-id: //depot/perl@19886 --- diff --git a/ext/B/B.pm b/ext/B/B.pm index ad53e9d..3dfb2c9 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -370,7 +370,7 @@ which can then be followed with the other access methods. Returns the SV object corresponding to the C variable C. -=item C +=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 +=item main_cv Return the (faked) CV corresponding to the main part of the Perl program. diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 324bd8c..6b01d6c 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -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 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 for more information.