remove trailing whitespace
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Intro.pod
index b724813..7bff03f 100644 (file)
@@ -942,6 +942,10 @@ is equivalent to
 
 =item * Pattern match (C<:Regex> and C<:LocalRegex>)
 
+B<Status: deprecated.> Use Chained methods or other techniques.
+If you really depend on this, install the standalone
+L<Catalyst::DispatchType::Regex> distribution.
+
     package MyApp::Controller::My::Controller;
     sub bar : Regex('^item(\d+)/order(\d+)$') { }
 
@@ -1329,7 +1333,7 @@ If you don't want or need these features then it's perfectly acceptable
         $c->stash->{message} = 'Hello World!';
         $self->check_message( $c, 'test1' );
     }
-    
+
     sub check_message {
         my ( $self, $c, $first_argument ) = @_;
         # do something...