From 27b0c16f2bdec1feb77ff34f6dd3aaca9a0fb6f3 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 31 Mar 2007 04:38:26 +0200 Subject: [PATCH] documentation fixes Typo, small mistake in example, unmarked code. --- PLP.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PLP.pm b/PLP.pm index 770f18e..fd9b262 100644 --- 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 blocks won't work properly. You should use C instead. Note that this is a not a built-in construct, so it needs proper termination with a semi-colon (as do - and ). +C and C). Under mod_perl, modules are loaded only once. A good modular design can improve performance because of this, but you will have to B the modules -- 2.30.0