From: Dave Rolsky Date: Sat, 11 Feb 2012 18:00:29 +0000 (-0600) Subject: Rename Basics::Recipe7 to Basics::Immutable X-Git-Tag: 2.0500~73 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=86fcbc7e89348cfc8c17980b86522c42bdc6fa69;p=gitmo%2FMoose.git Rename Basics::Recipe7 to Basics::Immutable --- diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 2b59923..521bece 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -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 - Making Moose fast with immutable +=item L Making a class immutable greatly increases the speed of accessors and object construction. diff --git a/lib/Moose/Cookbook/Basics/Recipe7.pod b/lib/Moose/Cookbook/Basics/Immutable.pod similarity index 89% rename from lib/Moose/Cookbook/Basics/Recipe7.pod rename to lib/Moose/Cookbook/Basics/Immutable.pod index 618816a..3e27d14 100644 --- a/lib/Moose/Cookbook/Basics/Recipe7.pod +++ b/lib/Moose/Cookbook/Basics/Immutable.pod @@ -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__