This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
amigaos4: unlink of open/locked files will fail
[perl5.git] / pod / perlform.pod
index 6a4fc48..84b6fc5 100644 (file)
@@ -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:
@@ -409,7 +409,7 @@ For example:
     @<<<  @|||  @>>>
     END
 
-    print "Wow, I just stored `$^A' in the accumulator!\n";
+    print "Wow, I just stored '$^A' in the accumulator!\n";
 
 Or to make an swrite() subroutine, which is to write() what sprintf()
 is to printf(), do this:
@@ -440,7 +440,7 @@ SMTP cutoff.
 
 Lexical variables (declared with "my") are not visible within a
 format unless the format is declared within the scope of the lexical
-variable.  (They weren't visible at all before version 5.001.)
+variable.
 
 If a program's environment specifies an LC_NUMERIC locale and C<use
 locale> is in effect when the format is declared, the locale is used