remove SYNOSPIS so Array looks like the other MethodProviders
Chris Prather [Sun, 9 Aug 2009 20:46:41 +0000 (16:46 -0400)]
lib/Moose/Meta/Attribute/Native/MethodProvider/Array.pm

index c07cf13..a056b5d 100644 (file)
@@ -333,40 +333,11 @@ __END__
 
 Moose::Meta::Attribute::Native::MethodProvider::Array
 
-=head1 SYNOPSIS
-
-   package Stuff;
-   use Moose;
-   use Moose::AttributeHelpers;
-
-   has 'options' => (
-       traits     => ['Array'],
-       is         => 'rw',
-       isa        => 'ArrayRef[Str]',
-       default    => sub { [] },
-       auto_deref => 1,
-       handles   => {
-           all_options       => 'elements',
-           map_options       => 'map',
-           filter_options    => 'grep',
-           find_option       => 'find',
-           first_option      => 'first',
-           last_option       => 'last',
-           get_option        => 'get',
-           join_options      => 'join',
-           count_options     => 'count',
-           do_i_have_options => 'empty',
-           sorted_options    => 'sort',
-       }
-   );
-
-   no Moose;
-   1;
-
 =head1 DESCRIPTION
 
 This is a role which provides the method generators for
-L<Moose::Meta::Attribute::Trait::Native::Array>. Please check there for documentation on what methods are provided.
+L<Moose::Meta::Attribute::Trait::Native::Array>. Please check there for
+documentation on what methods are provided.
 
 =head1 METHODS