]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Minor POD tweaks
authorVincent Pit <vince@profvince.com>
Mon, 17 Oct 2011 23:31:01 +0000 (01:31 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 17 Oct 2011 23:31:01 +0000 (01:31 +0200)
lib/autovivification.pm

index 688907a295f8776a61acc7206f59047f175fad36..5eabf25c6965ca5a69d21ea836639ecc5560b423 100644 (file)
@@ -113,7 +113,7 @@ Turns off autovivification for lvalue dereferencing expressions, such as :
     function($arrayref->[$idx])
     function($hashref->{$key})
 
-An exception is thrown if vivification is needed to store the value, which means that effectively you can only assign to levels that are already defined
+An exception is thrown if vivification is needed to store the value, which means that effectively you can only assign to levels that are already defined.
 In the example, this would require C<$arrayref> (resp. C<$hashref>) to already be an array (resp. hash) reference.
 
 =item *
@@ -188,7 +188,7 @@ This constant only has a meaning with your perl is threaded ; otherwise, it'll a
 =head2 C<A_FORKSAFE>
 
 True iff this module could have been built with fork-safety features enabled.
-This will always be true except on Windows where it's false for perl 5.10.0 and below .
+This will always be true except on Windows where it's false for perl 5.10.0 and below.
 
 =head1 CAVEATS