Subject: | Documentation issue on Moose::Meta::Attribute->new |
The documentation for Moose::Meta::Attribute says that the invocation
for the method 'new' goes as:
Moose::Meta::Attribute->new(%options)
but if I look at the code it says:
sub new {
my ($class, $name, %options) = @_;
So shouldn't the invocation be documented as
Moose::Meta::Attribute->new($name, %options)