From: Dan Dascalescu Date: Mon, 27 Jul 2009 09:40:40 +0000 (-0700) Subject: Typo fix X-Git-Tag: 0.89~28 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ac4b3ad43aa91878ee9bc786e1800d5e9fbd876f;p=gitmo%2FMoose.git Typo fix --- diff --git a/lib/Moose/Cookbook/Basics/Recipe3.pod b/lib/Moose/Cookbook/Basics/Recipe3.pod index 9ddb624..81567aa 100644 --- a/lib/Moose/Cookbook/Basics/Recipe3.pod +++ b/lib/Moose/Cookbook/Basics/Recipe3.pod @@ -63,8 +63,7 @@ Let's take a look at the C attribute: has 'node' => ( is => 'rw', isa => 'Any' ); Moose generates a read-write accessor for this attribute. The type -constraint is C, which means literally means it can contain -anything. +constraint is C, which literally means it can contain anything. We could have left out the C option, but in this case, we are including it for the benefit of other programmers, not the computer.