nobody is really working on xs accessors anymore
[gitmo/Moose.git] / lib / Moose / Cookbook / Basics / Recipe1.pod
index 367a000..a39533a 100644 (file)
@@ -1,9 +1,11 @@
+package Moose::Cookbook::Basics::Recipe1;
 
-=pod
+# ABSTRACT: The (always classic) B<Point> example.
+
+__END__
 
-=head1 NAME
 
-Moose::Cookbook::Basics::Recipe1 - The (always classic) B<Point> example.
+=pod
 
 =head1 SYNOPSIS
 
@@ -163,7 +165,7 @@ required, and calling C<new> without them will throw an error.
 From here on, we can use C<$point> and C<$point3d> just as you would
 any other Perl 5 object. For a more detailed example of what can be
 done, you can refer to the
-F<t/000_recipes/moose_cookbook_basics_recipe1.t> test file.
+F<t/recipes/moose_cookbook_basics_recipe1.t> test file.
 
 =head2 Moose Objects are Just Hashrefs
 
@@ -223,21 +225,6 @@ L<http://www.gigamonkeys.com/book/object-reorientation-generic-functions.html>
 
 =back
 
-=head1 AUTHORS
-
-Stevan Little E<lt>stevan@iinteractive.comE<gt>
-
-Dave Rolsky E<lt>autarch@urth.orgE<gt>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2006-2010 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
 =begin testing
 
 my $point = Point->new( x => 1, y => 2 );