Fix a typoe comment
Dave Rolsky [Thu, 20 Jan 2011 21:14:05 +0000 (15:14 -0600)]
lib/Catalyst/Action/REST.pm

index 07bd908..14362bf 100644 (file)
@@ -96,7 +96,7 @@ sub dispatch {
         return $c->forward( $code,  $c->req->args ); # Forward to foo_GET if it's an action
      }
      elsif ($code = $controller->can($rest_method)) {
-        # Exceute normal action
+        # Execute normal action
         $c->execute( $self->class, $self, @{ $c->req->args } );
         $name = $rest_method; # Stash name and code to run 'foo_GET' like an action below.
     }