From: Steve Peters Date: Thu, 26 Jan 2006 19:23:48 +0000 (+0000) Subject: Fix a few nits in perl593delta X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a8ca0236e96a844dc900676193c8ac52013c5a03;p=p5sagit%2Fp5-mst-13.2.git Fix a few nits in perl593delta p4raw-id: //depot/perl@26951 --- diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod index e5e5b80..d29b928 100644 --- a/pod/perl593delta.pod +++ b/pod/perl593delta.pod @@ -64,7 +64,7 @@ Robin Houston. Perl 5 now has a switch statement. It's available when C is in effect. This feature introduces three new keywords, -C, C, and C : +C, C, and C: given ($foo) { when (/^abc/) { $abc = 1; } @@ -161,7 +161,7 @@ Enhancements">. =item * -C, also available on CPAN, allows to use assertions on +C, also available on CPAN, allows the use of assertions on perl versions prior to 5.9.0 (that is the first one to natively support them). @@ -205,7 +205,7 @@ with the new C module. =head2 C enhancements -C implements new option C<--use-xsloader> to force use of +C implements a new option C<--use-xsloader> to force use of C even in backwards compatible modules. The handling of authors' names that had apostrophes has been fixed. @@ -223,7 +223,7 @@ option to run I tests. The L manpage is a glossary of terms used in the Perl documentation, technical and otherwise, kindly provided by O'Reilly Media, -inc. +Inc. =head1 Performance Enhancements @@ -461,7 +461,7 @@ of the declarations involved is a C variable: my $x; our $x; # warns our $x; my $x; # warns -On the other hand, the following : +On the other hand, the following: our $x; our $x;