- Added LocalRegex, tweaked Regex debug output
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Request.pm
index 73c6bb3..cd8d20c 100644 (file)
@@ -123,16 +123,16 @@ then C<base> is C<http://localhost:3000/>.
 
 sub base {
     my ( $self, $base ) = @_;
-    
+
     return $self->{base} unless $base;
-    
+
     $self->{base} = $base;
-    
+
     # set the value in path for backwards-compat
     if ( $self->uri ) {
         $self->path;
     }
-    
+
     return $self->{base};
 }
 
@@ -502,7 +502,7 @@ Returns a URI object for the request.
 
 =item $req->user
 
-Contains the user name of user if authentication check was successful.
+Returns the user.
 
 =item $req->user_agent