updated changes;
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / TraitFor / Request / REST.pm
index d835410..2287158 100644 (file)
@@ -1,11 +1,9 @@
 package Catalyst::TraitFor::Request::REST;
+
 use Moose::Role;
 use HTTP::Headers::Util qw(split_header_words);
 use namespace::autoclean;
 
-our $VERSION = '0.81';
-$VERSION = eval $VERSION;
-
 has [qw/ data accept_only /] => ( is => 'rw' );
 
 has accepted_content_types => (
@@ -96,7 +94,7 @@ Catalyst::TraitFor::Request::REST - A role to apply to Catalyst::Request giving
 =head1 DESCRIPTION
 
 This is a L<Moose::Role> applied to L<Catalyst::Request> that adds a few
-methods to the request object to faciliate writing REST-y code.
+methods to the request object to facilitate writing REST-y code.
 Currently, these methods are all related to the content types accepted by
 the client.