diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-01-26 19:23:48 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-01-26 19:23:48 +0000 |
commit | a8ca0236e96a844dc900676193c8ac52013c5a03 (patch) | |
tree | 2f97382d0a889204794e4495aa11f0bb7726ea0a /pod/perl593delta.pod | |
parent | f659283492168ff7ad889e03e4cd8e625dc026d6 (diff) | |
download | perl-a8ca0236e96a844dc900676193c8ac52013c5a03.tar.gz |
Fix a few nits in perl593delta
p4raw-id: //depot/perl@26951
Diffstat (limited to 'pod/perl593delta.pod')
-rw-r--r-- | pod/perl593delta.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod index e5e5b80511..d29b928b5f 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<use feature 'switch'> is in effect. This feature introduces three new keywords, -C<given>, C<when>, and C<default> : +C<given>, C<when>, and C<default>: given ($foo) { when (/^abc/) { $abc = 1; } @@ -161,7 +161,7 @@ Enhancements">. =item * -C<assertions::compat>, also available on CPAN, allows to use assertions on +C<assertions::compat>, 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<Digest::SHA> module. =head2 C<h2xs> enhancements -C<h2xs> implements new option C<--use-xsloader> to force use of +C<h2xs> implements a new option C<--use-xsloader> to force use of C<XSLoader> even in backwards compatible modules. The handling of authors' names that had apostrophes has been fixed. @@ -223,7 +223,7 @@ option to run I<all> tests. The L<perlglossary> 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<my> 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; |