This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlguts: Document UTF8f format
[perl5.git] / pod / perl588delta.pod
index 344d8f4..5299272 100644 (file)
@@ -1,6 +1,8 @@
+=encoding utf8
+
 =head1 NAME
 
-perldelta - what is new for perl v5.8.8
+perl588delta - what is new for perl v5.8.8
 
 =head1 DESCRIPTION
 
@@ -429,7 +431,7 @@ C<ExtUtils::MakeMaker> upgraded to version 6.30 (was 6.17)
 
 =item *
 
-Too much to list here;  see L<http://search.cpan.org/src/MSCHWERN/ExtUtils-MakeMaker-6.30/Changes>
+Too much to list here;  see L<http://search.cpan.org/dist/ExtUtils-MakeMaker/Changes>
 
 =back
 
@@ -528,7 +530,7 @@ C<File::Spec> upgraded to version 3.12
 
 =item *
 
-C<File::Spec->rootdir()> now returns C<\> on Win32, instead of C</>
+C<< File::Spec->rootdir() >> now returns C<\> on Win32, instead of C</>
 
 =item *
 
@@ -1241,7 +1243,7 @@ Now implements UCA Revision 14 (based on Unicode 4.1.0).
 
 =item *
 
-C<Unicode::Collate->new> method no longer overwrites user's C<$_>
+C<< Unicode::Collate->new >> method no longer overwrites user's C<$_>
 
 =item *
 
@@ -1383,7 +1385,7 @@ happens at program exit, it may be skipped completely.
 
 =item *
 
-Salvador Fandiño provided improvements to reduce the memory usage of C<sort>
+Salvador Fandiño provided improvements to reduce the memory usage of C<sort>
 and to speed up some cases.
 
 =item *
@@ -1472,7 +1474,7 @@ Trailing spaces are now trimmed from C<$!> and C<$^E>.
 
 =item *
 
-Operations that require perl to read a process' list of groups, such as reads
+Operations that require perl to read a process's list of groups, such as reads
 of C<$(> and C<$)>, now dynamically allocate memory rather than using a
 fixed sized array. The fixed size array could cause C stack exhaustion on
 systems configured to use large numbers of groups.
@@ -1533,7 +1535,7 @@ This is a new warning, produced in situations such as this:
 
 =head2 Non-string passed as bitmask
 
-This is a new warning, produced when number has been passed as a argument to
+This is a new warning, produced when number has been passed as an argument to
 select(), instead of a bitmask.
 
     # Wrong, will now warn