documentation fixes
Chris Prather [Mon, 4 May 2009 16:26:00 +0000 (12:26 -0400)]
lib/MooseX/AttributeHelpers/MethodProvider/Hash.pm
lib/MooseX/AttributeHelpers/MethodProvider/ImmutableHash.pm
lib/MooseX/AttributeHelpers/MethodProvider/List.pm

index 3479aeb..b6e9103 100644 (file)
@@ -95,26 +95,48 @@ L<MooseX::AttributeHelpers::Collection::ImmutableHash> role.
 
 =item B<count>
 
+Returns the number of elements in the hash.
+
 =item B<delete>
 
+Removes the element with the given key
+
 =item B<defined>
 
+Returns true if the value of a given key is defined
+
 =item B<empty>
 
+If the list is populated, returns true. Otherwise, returns false.
+
 =item B<clear>
 
+Unsets the hash entirely.
+
 =item B<exists>
 
+Returns true if the given key is present in the hash
+
 =item B<get>
 
+Returns an element of the hash by its key.
+
 =item B<keys>
 
+Returns the list of keys in the hash.
+
 =item B<set>
 
+Sets the element in the hash at the given key to the given value.
+
 =item B<values>
 
+Returns the list of values in the hash.
+
 =item B<kv>
 
+Returns the  key, value pairs in the hash
+
 =back
 
 =head1 BUGS
index db4d92f..b6faca0 100644 (file)
@@ -86,20 +86,36 @@ L<MooseX::AttributeHelpers::Collection::ImmutableHash>.
 
 =item B<count>
 
+Returns the number of elements in the list.
+
 =item B<empty>
 
+If the list is populated, returns true. Otherwise, returns false.
+
 =item B<exists>
 
+Returns true if the given key is present in the hash
+
 =item B<defined>
 
+Returns true if the value of a given key is defined
+
 =item B<get>
 
+Returns an element of the hash by its key.
+
 =item B<keys>
 
+Returns the list of keys in the hash.
+
 =item B<values>
 
+Returns the list of values in the hash.
+
 =item B<kv>
 
+Returns the  key, value pairs in the hash
+
 =back
 
 =head1 BUGS
index a0c700c..091ba03 100644 (file)
@@ -158,7 +158,7 @@ L<MooseX::AttributeHelpers::Collection::List>.
 
 =item B<count>
 
-Returns the number of elements inthe list.
+Returns the number of elements in the list.
 
    $stuff = Stuff->new;
    $stuff->options(["foo", "bar", "baz", "boo"]);