From: Jesse Luehrs Date: Sat, 7 May 2011 01:51:14 +0000 (-0500) Subject: fix up some abstracts X-Git-Tag: 2.0003~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=20544c311ab3450af56ee422067786e4abaed33d;p=gitmo%2FMoose.git fix up some abstracts --- diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Array.pm b/lib/Moose/Meta/Attribute/Native/Trait/Array.pm index 2c824b2..29916ec 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Array.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Array.pm @@ -10,7 +10,7 @@ no Moose::Role; 1; -# ABSTRACT: Helper trait for array delegation +# ABSTRACT: Helper trait for ArrayRef attributes __END__ diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm index 076b232..1b60fc8 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Bool.pm @@ -10,6 +10,10 @@ no Moose::Role; 1; +# ABSTRACT: Helper trait for Bool attributes + +__END__ + =pod =head1 SYNOPSIS diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Code.pm b/lib/Moose/Meta/Attribute/Native/Trait/Code.pm index 37eec42..79d70d5 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Code.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Code.pm @@ -9,6 +9,10 @@ no Moose::Role; 1; +# ABSTRACT: Helper trait for CodeRef attributes + +__END__ + =pod =head1 SYNOPSIS diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm index 1a5c755..6e64e79 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Counter.pm @@ -14,7 +14,7 @@ no Moose::Role; 1; -# ABSTRACT: Helper trait for counters +# ABSTRACT: Helper trait for Int attributes which represent counters __END__ diff --git a/lib/Moose/Meta/Attribute/Native/Trait/Number.pm b/lib/Moose/Meta/Attribute/Native/Trait/Number.pm index 190abcb..7e04536 100644 --- a/lib/Moose/Meta/Attribute/Native/Trait/Number.pm +++ b/lib/Moose/Meta/Attribute/Native/Trait/Number.pm @@ -9,6 +9,10 @@ no Moose::Role; 1; +# ABSTRACT: Helper trait for Num attributes + +__END__ + =pod =head1 SYNOPSIS diff --git a/lib/Moose/Meta/Role/Attribute.pm b/lib/Moose/Meta/Role/Attribute.pm index 15721da..1344fa2 100644 --- a/lib/Moose/Meta/Role/Attribute.pm +++ b/lib/Moose/Meta/Role/Attribute.pm @@ -116,6 +116,10 @@ sub is_same_as { 1; +# ABSTRACT: The Moose attribute metaclass for Roles + +__END__ + =pod =head1 DESCRIPTION