Fix reference to .yml file in debug log.
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / CatalystBasics.pod
index c1e1b91..de4fe54 100644 (file)
@@ -145,7 +145,7 @@ directories and files it creates:
             View          # Directory for Views
         Hello.pm          # Base application module
     Makefile.PL           # Makefile to build application
-    hello.yml             # Application configuration file
+    hello.conf            # Application configuration file
     README                # README file
     root                  # Equiv of htdocs, dir for templates, css, javascript
         favicon.ico
@@ -192,7 +192,7 @@ server:
     [debug] Loaded dispatcher "Catalyst::Dispatcher"
     [debug] Loaded engine "Catalyst::Engine::HTTP"
     [debug] Found home "/home/me/Hello"
-    [debug] Loaded Config "/home/me/Hello/hello.yml"
+    [debug] Loaded Config "/home/me/Hello/hello.conf"
     [debug] Loaded components:
     .-----------------------------------------------------------------+----------.
     | Class                                                           | Type     |
@@ -318,8 +318,8 @@ Now that the TT.pm "View" exists, Catalyst will autodiscover it and be
 able to use it to display the view templates, using the "process" 
 method that it inherits from the C<Catalyst::View::TT class>.
 
-Template Toolkit is a rather complicated template facility, with 
-excellent docs at 
+Template Toolkit is a very full featured template facility, with 
+excellent documentation at 
 L<http://template-tookit.org/|http://template-tookit.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