This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta - Updates, tidy-ups and remove boilerplate
[perl5.git] / pod / perlform.pod
index fc5d02b..1a57b5f 100644 (file)
@@ -169,7 +169,7 @@ characters B<without> an embedded "."), the character used for the decimal
 point is determined by the current LC_NUMERIC locale if C<use locale> is in
 effect.  This means that, if, for example, the run-time environment happens
 to specify a German locale, "," will be used instead of the default ".".  See
-L<perllocale> and L<"WARNINGS"> for more information.
+L<perllocale> and L</"WARNINGS"> for more information.
 
 
 =head2 Using Fill Mode
@@ -301,7 +301,7 @@ stage in the expression to single-step the debugger through):
 
 If you use the English module, you can even read the variable names:
 
-    use English '-no_match_vars';
+    use English;
     $ofh = select(OUTF);
     $FORMAT_NAME     = "My_Other_Format";
     $FORMAT_TOP_NAME = "My_Top_Format";
@@ -400,7 +400,7 @@ however you like.  Not very convenient, but doable.
 =head2 Accessing Formatting Internals
 X<format, internals>
 
-For low-level access to the formatting mechanism you may use formline()
+For low-level access to the formatting mechanism, you may use formline()
 and access C<$^A> (the $ACCUMULATOR variable) directly.
 
 For example: