From: Tomas Doran (t0m) Date: Thu, 28 Apr 2011 08:35:23 +0000 (+0000) Subject: Fix Pod X-Git-Tag: 0.21~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FFCGI-ProcManager.git;a=commitdiff_plain;h=6e8b04f778a9129e5caf07c2d60a074e5bac4070 Fix Pod --- diff --git a/lib/FCGI/ProcManager.pm b/lib/FCGI/ProcManager.pm index f8e0797..8ce50f5 100644 --- a/lib/FCGI/ProcManager.pm +++ b/lib/FCGI/ProcManager.pm @@ -31,12 +31,11 @@ BEGIN { =head1 SYNOPSIS -{ # In Object-oriented style. use CGI::Fast; use FCGI::ProcManager; my $proc_manager = FCGI::ProcManager->new({ - n_processes => 10 + n_processes => 10 }); $proc_manager->pm_manage(); while (my $cgi = CGI::Fast->new()) { @@ -47,7 +46,7 @@ BEGIN { # This style is also supported: use CGI::Fast; - use FCGI::ProcManager qw(pm_manage pm_pre_dispatch + use FCGI::ProcManager qw(pm_manage pm_pre_dispatch pm_post_dispatch); pm_manage( n_processes => 10 ); while (my $cgi = CGI::Fast->new()) {