minor typo
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / BasicCRUD.pod
index 598f3e2..f0bd8b5 100644 (file)
@@ -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<Note:> Utuntu will automatically "do the right thing" and use the 
+B<Note:> 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<apt-get> 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<DBIx::Class::ResultSet>. 
 It allows you to pull complex and unsightly "query code" out of your 
 controllers and encapsulate it in a method of your ResultSet Class.