From: Tomas Doran Date: Fri, 20 Mar 2009 14:18:49 +0000 (+0000) Subject: Make the list actually come out as a list when you pod2html X-Git-Tag: 5.80001~62 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7e5c67f2407bba8afe4ded84f69aa6ff7ed7e4b2 Make the list actually come out as a list when you pod2html --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 39cbdea..53e9b21 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -848,10 +848,17 @@ L. Returns 1 if debug mode is enabled, 0 otherwise. -You can enable debug mode in several ways: -(1) with the environment variables MYAPP_DEBUG, or CATALYST_DEBUG -(2) the -Debug option in your MyApp.pm -(3) by declaring "sub debug { 1 }" in your MyApp.pm. +You can enable debug mode in several ways: + +=over + +=item With the environment variables MYAPP_DEBUG, or CATALYST_DEBUG + +=item The -Debug option in your MyApp.pm + +=item By declaring "sub debug { 1 }" in your MyApp.pm. + +=back Calling $c->debug(1) has no effect.