This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document that there are bugs with EBCDIC and regexes
[perl5.git] / pod / perl5110delta.pod
index 6301425..1b722ed 100644 (file)
@@ -382,7 +382,7 @@ The C<each> function can now operate on arrays.
 Perl's core time-related functions are now Y2038 compliant. (With 29
 years to spare!)
 
-=head2 C<$,> flexibilty
+=head2 C<$,> flexibility
 
 The variable C<$,> may now be tied.
 
@@ -396,7 +396,7 @@ You can now set C<-W> from the C<PERL5OPT> environment variable
 
 =head2 C<delete local>
 
-C<delete local> now allows you to lexically delete a hash entry.
+C<delete local> now allows you to locally delete a hash entry.
 
 =head2 New support for Abstract namespace sockets
 
@@ -413,10 +413,10 @@ system call.
 Dual-lifed modules maintained primarily in the Perl core now live in dist/.
 Dual-lifed modules maintained primarily on CPAN now live in cpan/
 
-In previous releases of Perl, it was customary to enumerate all module 
+In previous releases of Perl, it was customary to enumerate all module
 changes in this section of the C<perldelta> file.   From 5.11.0 forward
 only notable updates (such as new or deprecated modules ) will be
-listed in this section. For a complete reference to the versions of 
+listed in this section. For a complete reference to the versions of
 modules shipped in a given release of perl, please see L<Module::CoreList>.
 
 =head2 New Modules and Pragmata
@@ -509,7 +509,7 @@ removed. If you still need this, then they are available in the
 
 Upgraded from version 1.04 to 1.05.
 
-C<< UNIVERSAL->import() >> is now deprecated.
+C<< UNIVERSAL-E<gt>import() >> is now deprecated.
 
 =back
 
@@ -578,10 +578,6 @@ reference to perl programs.
 This describes how to access the perl source using the I<git> version
 control system.
 
-=item L<perlthanks>
-
-This describes the new F<perlthanks> utility.
-
 =back
 
 =head1 Changes to Existing Documentation
@@ -862,7 +858,7 @@ file. This eliminates a potential race condition [RT #60904].
 
 =item *
 
-On some UNIX systems, the value in C<$?> would not have the top bit set
+On some Unix systems, the value in C<$?> would not have the top bit set
 (C<$? & 128>) even if the child core dumped.
 
 =item *
@@ -882,7 +878,7 @@ XS code including F<XSUB.h> before F<perl.h> gave a compile-time error
 
 =item *
 
-C<< $object->isa('Foo') >> would report false if the package C<Foo> didn't
+C<< $object-E<gt>isa('Foo') >> would report false if the package C<Foo> didn't
 exist, even if the object's C<@ISA> contained C<Foo>.
 
 =item *
@@ -1526,7 +1522,7 @@ Tweak the "Illegal character in prototype" warning so it's more precise when rep
 
 =item *
 
-Unintented interpolation of $\ in regex
+Unintended interpolation of $\ in regex
 
 =item *
 
@@ -1542,8 +1538,8 @@ They are now very similar to those produced by Algorithm::C3.
 
 Amelioration of the error message "Unrecognized character %s in column %d"
 
-Changes the error message to "Unrecognized character %s; marked by <--
-HERE after %s<-- HERE near column %d". This should make it a little
+Changes the error message to "Unrecognized character %s; marked by E<lt>--
+HERE after %sE<lt>-- HERE near column %d". This should make it a little
 simpler to spot and correct the suspicious character.
 
 =item *