From: Rafael Garcia-Suarez Date: Mon, 22 Oct 2007 11:46:36 +0000 (+0000) Subject: Mention perlcommunity.pod, plus some typo fixes X-Git-Tag: accepted/trunk/20130322.191538~14324 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dbef3c66e2761d118774f973c961faa9b1e467d9;p=platform%2Fupstream%2Fperl.git Mention perlcommunity.pod, plus some typo fixes p4raw-id: //depot/perl@32166 --- diff --git a/pod/perl5100delta.pod b/pod/perl5100delta.pod index edf99f9..64b6745 100644 --- a/pod/perl5100delta.pod +++ b/pod/perl5100delta.pod @@ -36,7 +36,7 @@ optional features (like C). =head2 Defined-or operator A new operator C (defined-or) has been implemented. -The following statement: +The following expression: $a // $b @@ -44,7 +44,7 @@ is merely equivalent to defined $a ? $a : $b -and +and the statement $c //= $d; @@ -250,12 +250,12 @@ for more information. (Alex Gough) A new pragma, C (for Method Resolution Order) has been added. It permits to switch, on a per-class basis, the algorithm that perl uses to -find inherited methods in case of a mutiple inheritance hierachy. The +find inherited methods in case of a multiple inheritance hierarchy. The default MRO hasn't changed (DFS, for Depth First Search). Another MRO is available: the C3 algorithm. See L for more information. (Brandon Black) -Note that, due to changes in the implentation of class hierarchy search, +Note that, due to changes in the implementation of class hierarchy search, code that used to undef the C<*ISA> glob will most probably break. Anyway, undef'ing C<*ISA> had the side-effect of removing the magic on the @ISA array and should not have been done in the first place. @@ -920,6 +920,9 @@ string encodings in Perl, courtesy of Juerd Waalboer. A new manual page, L (the Perl Unicode FAQ), has been added (Juerd Waalboer). +The L manpage gives a description of the Perl community +on the Internet and in real life. (Edgar "Trizor" Bering) + The L manual page documents the C namespace. (Tels) The long-existing feature of C regexps setting C<$_> and pos()