add self to contributors
[p5sagit/Eval-WithLexicals.git] / lib / Eval / WithLexicals.pm
index 9a08c93..c30adb2 100644 (file)
@@ -17,7 +17,7 @@ has lexicals => (is => 'rw', default => quote_sub q{ {} });
     isa => sub {
       my ($val) = @_;
       die "Invalid context type $val - should be list, scalar or void"
-       unless $valid_contexts{$val};
+        unless $valid_contexts{$val};
     },
   );
 }
@@ -137,6 +137,9 @@ sub _eval_do {
   }
 }
 
+1;
+__END__
+
 =head1 NAME
 
 Eval::WithLexicals - pure perl eval with persistent lexical variables
@@ -259,6 +262,8 @@ Matt S. Trout <mst@shadowcat.co.uk>
 
 David Leadbeater <dgl@dgl.cx>
 
+haarg - Graham Knop (cpan:HAARG) <haarg@cpan.org>
+
 =head1 COPYRIGHT
 
 Copyright (c) 2010 the Eval::WithLexicals L</AUTHOR> and L</CONTRIBUTORS>
@@ -270,5 +275,3 @@ This library is free software and may be distributed under the same terms
 as perl itself.
 
 =cut
-
-1;