Fixed 'the this' mistake.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Tutorial / CatalystBasics.pod
index d1303bb..b150990 100644 (file)
@@ -411,7 +411,7 @@ sources"; see L<DBIx::Class::ResultSource>).  In this case, we want to
 load the model object for the C<books>, C<book_authors>, and C<authors>
 tables created in the previous step.
 
-Open C<lib/MyAppDB.pm> in your editor and insert:
+Create C<lib/MyAppDB.pm> in your editor and insert:
 
     package MyAppDB;
     
@@ -457,7 +457,7 @@ First, create a directory to hold the class:
 
     $ mkdir lib/MyAppDB
 
-Then open C<lib/MyAppDB/Book.pm> in your editor and enter:
+Then create C<lib/MyAppDB/Book.pm> in your editor and enter:
 
     package MyAppDB::Book;
     
@@ -520,7 +520,7 @@ us to use the shorter C<$book-E<gt>authors-E<gt>first-E<gt>last_name>.
 Note that you cannot define a C<many_to_many> relationship without also
 having the C<has_many> relationship in place.
 
-Next, open C<lib/MyAppDB/Author.pm> in your editor and enter:
+Next, create C<lib/MyAppDB/Author.pm> in your editor and enter:
 
     package MyAppDB::Author;
     
@@ -572,7 +572,7 @@ Next, open C<lib/MyAppDB/Author.pm> in your editor and enter:
     
     1;
 
-Finally, open C<lib/MyAppDB/BookAuthor.pm> in your editor and enter:
+Finally, create C<lib/MyAppDB/BookAuthor.pm> in your editor and enter:
 
     package MyAppDB::BookAuthor;
     
@@ -703,7 +703,7 @@ to the controller:
         $c->stash->{books} = [$c->model('MyAppDB::Book')->all];
         
         # Set the TT template to use.  You will almost always want to do this
-        # in your action methods (actions methods respond to user input in
+        # in your action methods (action methods respond to user input in
         # your controllers).
         $c->stash->{template} = 'books/list.tt2';
     }
@@ -828,7 +828,7 @@ forwards processing to your view in order to generate the appropriate
 response output.  Catalyst v5.7000 ships with a new mechanism, 
 L<Catalyst::Action::RenderView|Catalyst::Action::RenderView>, that 
 automatically performs this operation.  If you look in 
-C<lib/MyApp/Controller/Root.pm>, you should see the this empty 
+C<lib/MyApp/Controller/Root.pm>, you should see the empty 
 definition for the C<sub end> method:
 
     sub end : ActionClass('RenderView') {}
@@ -969,7 +969,7 @@ First create a directory for book-related TT templates:
 
     $ mkdir root/src/books
 
-Then open C<root/src/books/list.tt2> in your editor and enter:
+Then create C<root/src/books/list.tt2> in your editor and enter:
 
     [% # This is a TT comment.  The '-' at the end "chomps" the newline.  You won't -%]
     [% # see this "chomping" in your browser because HTML ignores blank lines, but  -%]
@@ -1213,7 +1213,7 @@ the C<$c-E<gt>detach> mechanisms (these are discussed in Part 2 and
 Part 8 of the Tutorial).
 
 
-=head1 RETURN TO A MANUALLY SPECIFIED TEMPLATE
+=head1 RETURN TO A MANUALLY-SPECIFIED TEMPLATE
 
 In order to be able to use C<$c-E<gt>forward> and C<$c-E<gt>detach>
 later in the tutorial, you should remove the comment from the