RT 78545 minor typos
Kieren Diment [Mon, 23 Jul 2012 23:55:03 +0000 (09:55 +1000)]
Changes
lib/Catalyst/Manual/Tutorial/02_CatalystBasics.pod

diff --git a/Changes b/Changes
index f8d8195..0aef25c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Catalyst-Manual
-    - Update auth class name RT 77322 Thanks Joen Axford
+
+    - Fix minor typos RT 78545, thanks Joe Axford
+    - Update auth class name RT 77322 Thanks Joe Axford
     - Fix typo RT #77247 Thanks John Deighan
 
 5.9004 4th May 2012
index a4edfdc..b68a981 100644 (file)
@@ -358,7 +358,7 @@ In the Catalyst world a "View" itself is not a page of XHTML or a
 template designed to present a page to a browser. Rather, it is the
 module that determines the I<type> of view -- HTML, PDF, XML, etc. For
 the thing that generates the I<content> of that view (such as a
-Toolkit Template template file), the actual templates go under the
+Template Toolkit template file), the actual templates go under the
 "root" directory.
 
 To create a TT view, run:
@@ -385,7 +385,7 @@ details on setting this).
 =item *
 
 The final "TT" tells Catalyst the I<type> of the view, with "TT"
-indicating that you want to a Template Toolkit view.
+indicating that you want to use a Template Toolkit view.
 
 =back