remove disabled Cwd include
[perl/plp/.git] / PLP.pm
diff --git a/PLP.pm b/PLP.pm
index 770f18e492b717930082f263ca0f45e925ce1f82..8e6d188d23f567e779de6ccd29ab92aee52de147 100644 (file)
--- a/PLP.pm
+++ b/PLP.pm
@@ -10,7 +10,6 @@ use PLP::Tie::Print;
 
 use File::Basename ();
 use File::Spec;
-#use Cwd ();
 
 use strict;
 
@@ -31,7 +30,7 @@ our $VERSION = '3.19';
 
 # The _init subs do the following:
 #  Set $PLP::code to the initial code
-#  Set $ENV{PLP_*} and makes PATH_INFO if needed
+#  Set $ENV{PLP_*} and make PATH_INFO if needed
 #  Change the CWD
 
 # This gets referenced as the initial $PLP::ERROR
@@ -422,7 +421,7 @@ Includes a dynamic expression in your document. The expression is evaluated in
 list context. Please note that the expression should not end a statement: avoid
 semi-colons. No whitespace may be between C<< <: >> and the equal sign.
 
-C<< foo <:= $bar :> $baz >> is like C<< <: print 'foo ', $bar, ' baz'; :> >>.
+C<< foo <:= $bar :> $baz >> is like C<< <: print 'foo ', $bar, ' $baz'; :> >>.
 
 =item C<< <(filename)> >>
 
@@ -513,7 +512,7 @@ else.
 Because the interpreter that mod_perl uses never ends, C<END { }> blocks won't
 work properly. You should use C<PLP_END { };> instead. Note that this is a not
 a built-in construct, so it needs proper termination with a semi-colon (as do
-<eval> and <do>).
+C<eval> and C<do>).
 
 Under mod_perl, modules are loaded only once. A good modular design can improve
 performance because of this, but you will have to B<reload> the modules