updates Changes file
[catagits/CatalystX-Declare.git] / README
diff --git a/README b/README
index a2ef93e..4adecc2 100644 (file)
--- a/README
+++ b/README
@@ -30,7 +30,7 @@ SYNOPSIS
             method _build_welcome_message { 'Welcome' }
         
         
-            action base as '';
+            action base under '/' as '';
         
             under base {
             
@@ -43,7 +43,7 @@ SYNOPSIS
   Roles
         use CatalystX::Declare;
 
-        controller_role MyApp::Web::ControllerRole::Bar {
+        component_role MyApp::Web::ControllerRole::Bar {
 
             use MyApp::Types qw( Username );
 
@@ -66,6 +66,8 @@ SYNOPSIS
         }
 
 DESCRIPTION
+    This module is EXPERIMENTAL
+
     This module provides a declarative syntax for Catalyst applications. Its
     main focus is currently on common and repetitious parts of the
     application, such as the application class itself, controllers, and
@@ -102,7 +104,7 @@ DESCRIPTION
 
         controller MyApp::Web::Controller::Baz {
 
-            final action qux { 
+            final action qux under '/' { 
                 $ctx->response->body(Foo->new->bar) 
             }
         }