More pod fixes, switching view names to the standard 'TT'
J. Shirley [Fri, 19 Oct 2007 15:33:04 +0000 (15:33 +0000)]
lib/Catalyst/View/Email/Template.pm

index 991f199..e213a10 100644 (file)
@@ -61,11 +61,11 @@ Sending email is just setting up your stash key, and forwarding to the view.
 Alternatively if you want more control over your templates you can use the following idiom :-
 
     templates => [
-               {       view => 'HTML', 
+               {       view => 'TT', 
                        template => 'email/test.html.tt',
                        content_type => 'text/html'
                },
-               {       view => 'Text', 
+               {       view => 'TT', 
                        template => 'email/test.plain.tt',
                        content_type => 'text/plain'
                }