Fix docs citing incorrect method, "serialize_bad_request"
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Deserialize.pm
index 6029f9a..e6a0887 100644 (file)
@@ -8,9 +8,6 @@ use Module::Pluggable::Object;
 use MRO::Compat;
 use Moose::Util::TypeConstraints;
 
-our $VERSION = '1.02';
-$VERSION = eval $VERSION;
-
 has plugins => ( is => 'rw' );
 
 has deserialize_http_methods => (
@@ -124,7 +121,7 @@ L<Catalyst::Request::REST>.
 
 For building custom error responses when de-serialization fails, you can create
 an ActionRole (and use L<Catalyst::Controller::ActionRole> to apply it to the
-C<begin> action) which overrides C<unsupported_media_type> and/or C<_serialize_bad_request>
+C<begin> action) which overrides C<unsupported_media_type> and/or C<serialize_bad_request>
 methods.
 
 =head1 SEE ALSO