fix up some abstracts
Jesse Luehrs [Sat, 7 May 2011 01:51:14 +0000 (20:51 -0500)]
lib/Moose/Meta/Attribute/Native/Trait/Array.pm
lib/Moose/Meta/Attribute/Native/Trait/Bool.pm
lib/Moose/Meta/Attribute/Native/Trait/Code.pm
lib/Moose/Meta/Attribute/Native/Trait/Counter.pm
lib/Moose/Meta/Attribute/Native/Trait/Number.pm
lib/Moose/Meta/Role/Attribute.pm

index 2c824b2..29916ec 100644 (file)
@@ -10,7 +10,7 @@ no Moose::Role;
 
 1;
 
-# ABSTRACT: Helper trait for array delegation
+# ABSTRACT: Helper trait for ArrayRef attributes
 
 __END__
 
index 076b232..1b60fc8 100644 (file)
@@ -10,6 +10,10 @@ no Moose::Role;
 
 1;
 
+# ABSTRACT: Helper trait for Bool attributes
+
+__END__
+
 =pod
 
 =head1 SYNOPSIS
index 37eec42..79d70d5 100644 (file)
@@ -9,6 +9,10 @@ no Moose::Role;
 
 1;
 
+# ABSTRACT: Helper trait for CodeRef attributes
+
+__END__
+
 =pod
 
 =head1 SYNOPSIS
index 1a5c755..6e64e79 100644 (file)
@@ -14,7 +14,7 @@ no Moose::Role;
 
 1;
 
-# ABSTRACT: Helper trait for counters
+# ABSTRACT: Helper trait for Int attributes which represent counters
 
 __END__
 
index 190abcb..7e04536 100644 (file)
@@ -9,6 +9,10 @@ no Moose::Role;
 
 1;
 
+# ABSTRACT: Helper trait for Num attributes
+
+__END__
+
 =pod
 
 =head1 SYNOPSIS
index 15721da..1344fa2 100644 (file)
@@ -116,6 +116,10 @@ sub is_same_as {
 
 1;
 
+# ABSTRACT: The Moose attribute metaclass for Roles
+
+__END__
+
 =pod
 
 =head1 DESCRIPTION