Remove nothingmuch's nasty tabs ;)
[gitmo/Moose.git] / lib / Moose / Cookbook / Recipe5.pod
index 7f1c468..f0bac8a 100644 (file)
@@ -162,7 +162,7 @@ and pass it to the B<URI> constructor along with the default
 
 And of course, our coercions do nothing unless they are told to, 
 like so:
-                                                  
+
   has 'base' => (is => 'rw', isa => 'Uri', coerce => 1);
   has 'uri'  => (is => 'rw', isa => 'Uri', coerce => 1);
 
@@ -170,7 +170,7 @@ As you can see, re-using the coercion allows us to enforce a
 consistent and very flexible API across multiple accessors.
 
 =head1 CONCLUSION
-    
+
 This recipe illustrated the power of coercions to build a more 
 flexible and open API for your accessors, while still retaining 
 all the safety that comes from using Moose's type constraints. 
@@ -188,7 +188,7 @@ Stevan Little E<lt>stevan@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2006, 2007 by Infinity Interactive, Inc.
+Copyright 2006-2008 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>