Make the "do not coerce class names" example match basics recipe 5
Dave Rolsky [Wed, 11 Feb 2009 19:32:13 +0000 (19:32 +0000)]
lib/Moose/Manual/BestPractices.pod

index 157e499..56c9709 100644 (file)
@@ -169,9 +169,9 @@ have magical side effects elsewhere:
 
 Instead, we can create an "empty" subtype for the coercion:
 
-    subtype 'My.HTTP.Headers' => as class_type('HTTP::Headers');
+    subtype 'My.HTTP::Headers' => as class_type('HTTP::Headers');
 
-    coerce 'My.HTTP.Headers'
+    coerce 'My.HTTP::Headers'
         => from 'HashRef'
             => via { HTTP::Headers->new( %{$_} ) };