From: Shlomi Fish Date: Wed, 9 Dec 2009 10:19:06 +0000 (+0200) Subject: Fixed a typo - "a Int" -> "an Int". X-Git-Tag: 0.93_01~46 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5d1ea9778194dfce7e829278d766d7d78d71a1a9;hp=236b8a02f006df61a21616caef9cb32e40cf6df3;p=gitmo%2FMoose.git Fixed a typo - "a Int" -> "an Int". --- diff --git a/lib/Moose/Cookbook/Basics/Recipe2.pod b/lib/Moose/Cookbook/Basics/Recipe2.pod index 832dea7..d1b5617 100644 --- a/lib/Moose/Cookbook/Basics/Recipe2.pod +++ b/lib/Moose/Cookbook/Basics/Recipe2.pod @@ -68,7 +68,7 @@ default value: has 'balance' => ( isa => 'Int', is => 'rw', default => 0 ); This says that a B has a C attribute, which has -a C type constraint, a read/write accessor, and a default value +an C type constraint, a read/write accessor, and a default value of C<0>. This means that every instance of B that is created will have its C slot initialized to C<0>, unless some other value is provided to the constructor.