X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FBasicCRUD.pod;h=f0bd8b53cb4f23bae9ac94cef89bd590e7da475f;hb=0e71fc183d43a8a3495c7d9af545755ea7d62fe0;hp=598f3e2dc8fe30fbc291134bf700d3c3e427c7b9;hpb=1cde0fd603f0f21f0197632bd19904f468f28c83;p=catagits%2FCatalyst-Manual.git diff --git a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod index 598f3e2..f0bd8b5 100644 --- a/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod +++ b/lib/Catalyst/Manual/Tutorial/BasicCRUD.pod @@ -932,7 +932,7 @@ to use the "query param" technique shown here in your applications. In this section we will explore some additional capabilities offered by DBIx::Class. Although these features have relatively little to do -with Catalyst per-se, you will almost certainly want to take advantage +with Catalyst per se, you will almost certainly want to take advantage of them in your applications. @@ -964,7 +964,7 @@ Then make sure you are running an appropriate version: Make sure you get version 0.22 or higher. -B Utuntu will automatically "do the right thing" and use the +B Ubuntu will automatically "do the right thing" and use the module we installed from CPAN and ignore the older version we picked up via the C command. If you are using a different environment, you will need to make sure you are using v0.22 or higher @@ -1132,7 +1132,7 @@ incorporate the datetime logic: =head2 Create a ResultSet Class -An often overlooked but extremly powerful features of DBIC is that it +An often overlooked but extremely powerful features of DBIC is that it allows you to supply your own subclasses of C. It allows you to pull complex and unsightly "query code" out of your controllers and encapsulate it in a method of your ResultSet Class.