This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document corelist change in perldelta
[perl5.git] / pod / perlintro.pod
index ab8a046..2a090a6 100644 (file)
@@ -37,8 +37,8 @@ to make the example easier to read.
 Do note that the examples have been written by many different authors over
 a period of several decades.  Styles and techniques will therefore differ,
 although some effort has been made to not vary styles too widely in the
-same sections. Do not consider one style to be better than others - "There
-Is More Than One Way Of Doing It" is one Perl's mottos.  After all, in your
+same sections.  Do not consider one style to be better than others - "There's
+More Than One Way To Do It" is one of Perl's mottos.  After all, in your
 journey as a programmer, you are likely to encounter different styles.
 
 =head2 What is Perl?
@@ -70,7 +70,7 @@ Alternatively, put this as the first line of your script:
 
     #!/usr/bin/env perl
 
-... and run the script as C</path/to/script.pl>.  Of course, it'll need
+... and run the script as F</path/to/script.pl>.  Of course, it'll need
 to be executable first, so C<chmod 755 script.pl> (under Unix).
 
 (This start line assumes you have the B<env> program.  You can also put
@@ -328,7 +328,7 @@ running the program.  Using C<strict> is highly recommended.
 
 Perl has most of the usual conditional and looping constructs.  As of Perl
 5.10, it even has a case/switch statement (spelled C<given>/C<when>).  See
-L<perlsyn/"Switch statements"> for more details.
+L<perlsyn/"Switch Statements"> for more details.
 
 The conditions can be any Perl expression.  See the list of operators in
 the next section for information on comparison and boolean logic operators,
@@ -408,7 +408,7 @@ the more friendly list scanning C<foreach> loop.
     }
 
 The C<foreach> keyword is actually a synonym for the C<for>
-keyword.  See C<L<perlsyn/"Foreach Loops">.
+keyword.  See C<L<perlsyn/"Foreach Loops">>.
 
 =back