From: Cory G Watson Date: Thu, 5 Mar 2009 20:52:38 +0000 (+0000) Subject: Fix pod formatting typo X-Git-Tag: 0.72_01~87 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e39d2b6ba839fa70a89dd168689d488806b7e34a;p=gitmo%2FMoose.git Fix pod formatting typo --- diff --git a/Changes b/Changes index bdf4de9..b843c20 100644 --- a/Changes +++ b/Changes @@ -10,6 +10,9 @@ Revision history for Perl extension Moose * Moose::Cookbook::Meta::Recipe7 - A new recipe, creating a custom meta-instance class. + * Moose::Cookbook::Basics::Recipe5 + - Fix POD formatting typo + 0.72 Mon, February 23, 2009 * Moose::Object * Moose::Meta::Method::Constructor diff --git a/lib/Moose/Cookbook/Basics/Recipe5.pod b/lib/Moose/Cookbook/Basics/Recipe5.pod index dd4120c..d81b38d 100644 --- a/lib/Moose/Cookbook/Basics/Recipe5.pod +++ b/lib/Moose/Cookbook/Basics/Recipe5.pod @@ -117,7 +117,7 @@ is for: => from 'HashRef' => via { HTTP::Headers->new( %{$_} ) }; -The first argument to c is the type I which we are +The first argument to C is the type I which we are coercing. Then we give it a set of C/C clauses. The C function takes some other type name and C takes a subroutine reference which actually does the coercion.