documentation fixes
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 31 Mar 2007 02:38:26 +0000 (04:38 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 31 Mar 2007 02:38:26 +0000 (04:38 +0200)
Typo, small mistake in example, unmarked code.

PLP.pm

diff --git a/PLP.pm b/PLP.pm
index 770f18e492b717930082f263ca0f45e925ce1f82..fd9b26259c90b94a3143d47a0b763603d7cab685 100644 (file)
--- a/PLP.pm
+++ b/PLP.pm
@@ -31,7 +31,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 +422,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 +513,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