X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FMoreCatalystBasics.pod;h=7f29eaf352f0a7f208182326843f68b957f8fce5;hp=9f24c9cb6300dc27f3e15e4a2e8153999a69bdde;hb=4dc2dec8075eaf029b3da3e21989e31022368f79;hpb=c93b5eaafedcb01e21120d85cf1ab836b8876c32 diff --git a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod index 9f24c9c..7f29eaf 100644 --- a/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod @@ -391,7 +391,7 @@ And update it to match: TEMPLATE_EXTENSION => '.tt2', # Set the location for TT files INCLUDE_PATH => [ - MyApp->path_to( 'root/src' ), + MyApp->path_to( 'root', 'src' ), ], ); @@ -654,7 +654,7 @@ returned. We are using the C<-Eall> to fetch all of the books. DBIC supports a wide variety of more advanced operations to easily do things like filtering and sorting the results. For example, the -following could be used to sort the results by desending title: +following could be used to sort the results by descending title: $c->model('DB::Books')->search({}, {order_by => 'title DESC'});