Rename Basics::Recipe1 to Basics::Point_AttributesAndSubclassing
Dave Rolsky [Sat, 11 Feb 2012 17:22:25 +0000 (11:22 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod [moved from lib/Moose/Cookbook/Basics/Recipe1.pod with 98% similarity]
lib/Moose/Cookbook/Snack/Types.pod

index bd31a4b..aa552f1 100644 (file)
@@ -26,9 +26,9 @@ laziness, types, type coercion, method modifiers, and more.
 
 =over 4
 
-=item L<Moose::Cookbook::Basics::Recipe1> - The (always classic) B<Point> example
+=item L<Moose::Cookbook::Basics::Point_AttributesAndSubclassing>
 
-A simple Moose-based class. Demonstrates Moose attributes and subclassing.
+A simple Moose-based class. Demonstrates basic Moose attributes and subclassing.
 
 =item L<Moose::Cookbook::Basics::Recipe2> - A simple B<BankAccount> example
 
@@ -1,6 +1,6 @@
-package Moose::Cookbook::Basics::Recipe1;
+package Moose::Cookbook::Basics::Point_AttributesAndSubclassing;
 
-# ABSTRACT: The (always classic) B<Point> example.
+# ABSTRACT: Point and Point3D classes, showing basic attributes and subclassing.
 
 __END__
 
@@ -165,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/recipes/moose_cookbook_basics_recipe1.t> test file.
+F<t/recipes/moose_cookbook_basics_point_attributesandsubclassing.t> test file.
 
 =head2 Moose Objects are Just Hashrefs
 
index 2b6670b..c11d21b 100644 (file)
@@ -39,8 +39,9 @@ __END__
 
 =head1 DESCRIPTION
 
-This is the Point example from L<Moose::Cookbook::Basics::Recipe1>
-with type checking added.
+This is the Point example from
+L<Moose::Cookbook::Basics::Point_AttributesAndSubclassing> with type checking
+added.
 
 If we try to assign a string value to an attribute that is an C<Int>,
 Moose will die with an explicit error message. The error will include
@@ -57,7 +58,7 @@ to check a value directly.
 
 =over 4
 
-=item L<Moose::Cookbook::Basics::Recipe1>
+=item L<Moose::Cookbook::Basics::Point_AttributesAndSubclassing>
 
 =item L<Moose::Utils::TypeConstraints>