Moose's class type constraints aren't limited to Moose-based objects
Shawn M Moore [Tue, 8 Apr 2008 12:08:38 +0000 (12:08 +0000)]
lib/Moose/Cookbook/Recipe2.pod

index e52c4c0..dc4b5dc 100644 (file)
@@ -86,8 +86,8 @@ Up until now, we have only had C<Int> type constraints, which
 (as I said in the first recipe) is a builtin type constraint 
 that Moose provides for you. The C<BankAccount> type constraint 
 is new, and was actually defined the moment we created the 
-B<BankAccount> class itself. In fact, for every Moose class that 
-you define, a corresponding type constraint will be created. This
+B<BankAccount> class itself. In fact, for every class in 
+your program, a corresponding type constraint will be created. This
 means that in the first recipe, both C<Point> and C<Point3D> type
 constraints were created, and in this recipe, both C<BankAccount>
 and C<CheckingAccount> type constraints were created. Moose does