Fixed a typo - "a Int" -> "an Int".
Shlomi Fish [Wed, 9 Dec 2009 10:19:06 +0000 (12:19 +0200)]
lib/Moose/Cookbook/Basics/Recipe2.pod

index 832dea7..d1b5617 100644 (file)
@@ -68,7 +68,7 @@ default value:
   has 'balance' => ( isa => 'Int', is => 'rw', default => 0 );
 
 This says that a B<BankAccount> has a C<balance> attribute, which has
-a C<Int> type constraint, a read/write accessor, and a default value
+an C<Int> type constraint, a read/write accessor, and a default value
 of C<0>. This means that every instance of B<BankAccount> that is
 created will have its C<balance> slot initialized to C<0>, unless some
 other value is provided to the constructor.