fixed docs
[catagits/Catalyst-Runtime.git] / README
diff --git a/README b/README
index 402b2d1..8c08809 100644 (file)
--- a/README
+++ b/README
@@ -3,19 +3,19 @@ NAME
 
 SYNOPSIS
         # use the helper to start a new application
-        catalyst MyApp
+        catalyst.pl MyApp
         cd MyApp
 
         # add models, views, controllers
-        perl bin/create model Something
-        perl bin/create view Stuff
-        perl bin/create controller Yada
+        script/create.pl model Something
+        script/create.pl view Stuff
+        script/create.pl controller Yada
 
         # built in testserver
-        perl bin/server
+        script/server.pl
 
         # command line interface
-        perl bin/test /yada
+        script/test.pl /yada
 
         See also L<Catalyst::Manual::Intro>