Rename Basics::Recipe7 to Basics::Immutable
Dave Rolsky [Sat, 11 Feb 2012 18:00:29 +0000 (12:00 -0600)]
lib/Moose/Cookbook.pod
lib/Moose/Cookbook/Basics/Immutable.pod [moved from lib/Moose/Cookbook/Basics/Recipe7.pod with 89% similarity]

index 2b59923..521bece 100644 (file)
@@ -51,7 +51,7 @@ classes that could be used to model companies, people, employees, etc.
 
 This recipe covers more subtype creation, including the use of type coercions.
 
-=item L<Moose::Cookbook::Basics::Recipe7> - Making Moose fast with immutable
+=item L<Moose::Cookbook::Basics::Immutable>
 
 Making a class immutable greatly increases the speed of accessors and
 object construction.
similarity index 89%
rename from lib/Moose/Cookbook/Basics/Recipe7.pod
rename to lib/Moose/Cookbook/Basics/Immutable.pod
index 618816a..3e27d14 100644 (file)
@@ -1,6 +1,6 @@
-package Moose::Cookbook::Basics::Recipe7;
+package Moose::Cookbook::Basics::Immutable;
 
-# ABSTRACT: Making Moose fast with immutable
+# ABSTRACT: Making Moose fast by making your class immutable
 
 __END__