Fixed some typos
[catagits/Catalyst-Runtime.git] / script / catalyst.pl
index 14ae648..567e7cd 100755 (executable)
@@ -8,12 +8,14 @@ use Catalyst::Helper;
 my $help  = 0;
 my $nonew = 0;
 
-GetOptions( 'help|?' => \$help,
-           'nonew'  => \$nonew );
+GetOptions(
+    'help|?' => \$help,
+    'nonew'  => \$nonew
+);
 
 pod2usage(1) if ( $help || !$ARGV[0] );
 
-my $helper = Catalyst::Helper->new({'.newfiles' => !$nonew});
+my $helper = Catalyst::Helper->new( { '.newfiles' => !$nonew } );
 pod2usage(1) unless $helper->mk_app( $ARGV[0] );
 
 1;
@@ -118,9 +120,7 @@ test directory
 
 
 The application module generated by the C<catalyst.pl> script is functional,
-although it reacts to all requests by outputting the message:
-
-    Congratulations, My::App is on Catalyst!
+although it reacts to all requests by outputting a friendly welcome screen.
 
 
 =head1 NOTE
@@ -143,15 +143,15 @@ L<Catalyst::Manual>, L<Catalyst::Manual::Intro>
 
 =head1 AUTHOR
 
-Sebastian Riedel <sri@oook.de>,
-Andrew Ford <A.Ford@ford-mason.co.uk>
+Sebastian Riedel, C<sri@oook.de>,
+Andrew Ford, C<A.Ford@ford-mason.co.uk>
 
 
 =head1 COPYRIGHT
 
 Copyright 2004-2005 Sebastian Riedel. All rights reserved.
 
-This library is free software. You can redistribute it and/or modify it under
-the same terms as perl itself.
+This library is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
 
 =cut