From: Dave Rolsky Date: Sat, 11 Feb 2012 20:40:02 +0000 (-0600) Subject: Rename Extending::Recipe4 to Extending::Mooseish_MooseSugar X-Git-Tag: 2.0500~56 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=commitdiff_plain;h=2349e3cb4319b549f00a9303dc408be332bf9f7f Rename Extending::Recipe4 to Extending::Mooseish_MooseSugar --- diff --git a/lib/Moose/Cookbook.pod b/lib/Moose/Cookbook.pod index 0209af6..e13ec0e 100644 --- a/lib/Moose/Cookbook.pod +++ b/lib/Moose/Cookbook.pod @@ -183,7 +183,7 @@ example shows how to provide a base object class debugging role that is applied to any class that uses a notional C module. -=item L - Acting like Moose.pm and providing sugar Moose-style +=item L This recipe shows how to provide a replacement for C. You may want to do this as part of the API for a C module, diff --git a/lib/Moose/Cookbook/Extending/Recipe4.pod b/lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod similarity index 97% rename from lib/Moose/Cookbook/Extending/Recipe4.pod rename to lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod index 1e351c4..5af9886 100644 --- a/lib/Moose/Cookbook/Extending/Recipe4.pod +++ b/lib/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod @@ -1,4 +1,4 @@ -package Moose::Cookbook::Extending::Recipe4; +package Moose::Cookbook::Extending::Mooseish_MooseSugar; # ABSTRACT: Acting like Moose.pm and providing sugar Moose-style diff --git a/lib/Moose/Manual/FAQ.pod b/lib/Moose/Manual/FAQ.pod index 8fb8570..e4294d8 100644 --- a/lib/Moose/Manual/FAQ.pod +++ b/lib/Moose/Manual/FAQ.pod @@ -129,7 +129,7 @@ NOTE: This B be set globally in Moose, as that would break other classes which are built with Moose. You can still save on typing by defining a new C that exports Moose's sugar and then turns on L. See -L. +L. =head3 How can I inflate/deflate values in accessors?