Fix pod formatting typo
Cory G Watson [Thu, 5 Mar 2009 20:52:38 +0000 (20:52 +0000)]
Changes
lib/Moose/Cookbook/Basics/Recipe5.pod

diff --git a/Changes b/Changes
index bdf4de9..b843c20 100644 (file)
--- 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
index dd4120c..d81b38d 100644 (file)
@@ -117,7 +117,7 @@ is for:
       => from 'HashRef'
           => via { HTTP::Headers->new( %{$_} ) };
 
-The first argument to c<coerce> is the type I<to> which we are
+The first argument to C<coerce> is the type I<to> which we are
 coercing. Then we give it a set of C<from>/C<via> clauses. The C<from>
 function takes some other type name and C<via> takes a subroutine
 reference which actually does the coercion.