]> git.vpit.fr Git - perl/modules/autovivification.git/blobdiff - lib/autovivification.pm
Bump copyright year
[perl/modules/autovivification.git] / lib / autovivification.pm
index 5eabf25c6965ca5a69d21ea836639ecc5560b423..48f90029a4b70dd07da73a9cf75cdfd9f83eccee 100644 (file)
@@ -53,7 +53,12 @@ BEGIN {
 
 =head1 METHODS
 
-=head2 C<unimport @opts>
+=head2 C<unimport>
+
+    no autovivification; # defaults to qw<fetch exists delete>
+    no autovivification qw<fetch store exists delete>;
+    no autovivification 'warn';
+    no autovivification 'strict';
 
 Magically called when C<no autovivification @opts> is encountered.
 Enables the features given in C<@opts>, which can be :
@@ -155,7 +160,10 @@ sub unimport {
  ();
 }
 
-=head2 C<import @opts>
+=head2 C<import>
+
+    use autovivification; # default Perl behaviour
+    use autovivification qw<fetch store exists delete>;
 
 Magically called when C<use autovivification @opts> is encountered.
 Disables the features given in C<@opts>, which can be the same as for L</unimport>.
@@ -234,7 +242,7 @@ Matt S. Trout asked for it.
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright 2009,2010,2011 Vincent Pit, all rights reserved.
+Copyright 2009,2010,2011,2012 Vincent Pit, all rights reserved.
 
 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.