Remove a reference to a FOREACH loop that did not exist (RT #39046)
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / CatalystBasics.pod
index 37ddb34..98b18c6 100644 (file)
@@ -312,8 +312,8 @@ To create a TT view, run:
 
 This creates the C<lib/Hello/View/TT.pm> module, which is a subclass of 
 C<Catalyst::View::TT>. The "view" keyword tells the create script that 
-you are creating a view, the first "TT" tells it that you are creating 
-a Template Toolkit view, and the second "TT" tells the script to name 
+you are creating a view, the second "TT" tells it that you are creating 
+a Template Toolkit view, and the first "TT" tells the script to name 
 the View module "TT.pm", which is a commonly used name for TT views. 
 (You can name it anything you want, such as "HTML.pm".) If you look at 
 TT.pm, you will find that it only contains a config statement to set 
@@ -325,7 +325,7 @@ method that it inherits from the C<Catalyst::View::TT class>.
 
 Template Toolkit is a very full featured template facility, with 
 excellent documentation at 
-L<http://template-tookit.org/>, 
+L<http://template-toolkit.org/>, 
 but since this is not a TT tutorial, we'll stick to only basic TT 
 usage here (and explore some of the more common TT features in later 
 parts of the tutorial).