This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for f132ae69 (*{undef})
[perl5.git] / pod / perl571delta.pod
index aff02e5..aa0945d 100644 (file)
@@ -88,7 +88,7 @@ The built-in layers are: unix (low level read/write), stdio (as in
 previous Perls), perlio (re-implementation of stdio buffering in a
 portable manner), crlf (does CRLF <=> "\n" translation as on Win32,
 but available on any platform).  A mmap layer may be available if
-platform supports it (mostly UNIXes).
+platform supports it (mostly Unixes).
 
 Layers to be applied by default may be specified via the 'open' pragma.
 
@@ -130,7 +130,7 @@ That is a literal undef, not an undefined value.
 
 =item *
 
-The list form of C<open> is now implemented for pipes (at least on UNIX):
+The list form of C<open> is now implemented for pipes (at least on Unix):
 
    open($fh,"-|", 'cat', '/etc/motd')
 
@@ -350,10 +350,10 @@ See L<MIME::QuotedPrint> for more information.
 
 =item *
 
-PerlIO::Scalar, by Nick Ing-Simmons, provides the implementation of
+PerlIO::scalar, by Nick Ing-Simmons, provides the implementation of
 IO to "in memory" Perl scalars as discussed above.  It also serves as
 an example of a loadable layer.  Other future possibilities include
-PerlIO::Array and PerlIO::Code.  See L<PerlIO::Scalar> for more
+PerlIO::array and PerlIO::code.  See L<PerlIO::scalar> for more
 information.
 
 =item *
@@ -366,7 +366,7 @@ in perl code).
     open($fh,">Via(MIME::QuotedPrint)",$path)
 
 This will automatically convert everything output to C<$fh>
-to Quoted-Printable.  See L<PerlIO::Via> for more information.
+to Quoted-Printable.  See L<PerlIO::via> for more information.
 
 =item *
 
@@ -901,7 +901,7 @@ is made, a warning is given.
 =item *
 
 C<push @a;> and C<unshift @a;> (with no values to push or unshift)
-now give a warning.  This may be a problem for generated and evaled
+now give a warning.  This may be a problem for generated and eval'ed
 code.
 
 =back
@@ -935,7 +935,7 @@ machines (Perl's malloc is mostly tuned for space).
 
 Many new tests have been added.  The most notable is probably the
 lib/1_compile: it is very notable because running it takes quite a
-long time -- it test compiles all the Perl modules in the distribution.
+long time. It test compiles all the Perl modules in the distribution.
 Please be patient.
 
 =head1 Known Problems