typo fixes
Jesse Luehrs [Sat, 7 May 2011 01:43:37 +0000 (20:43 -0500)]
lib/Moose/Cookbook/Basics/Recipe2.pod

index 255e91c..52c2019 100644 (file)
@@ -181,7 +181,8 @@ checking account and its overdraft account.
 
 In reality, this creation is sensitive to the order in which modules
 are loaded. In more complicated cases, you may find that you need to
-explicitly declare a class type before the corresponding is loaded.
+explicitly declare a class type before the corresponding class is
+loaded.
 
 =item (3)
 
@@ -231,7 +232,7 @@ my $savings_account;
         '... withdrew from savings successfully'
     );
     is( $savings_account->balance, 200,
-        '... got the right savings balance after withdrawl' );
+        '... got the right savings balance after withdrawal' );
 
     $savings_account->deposit(150);
     is( $savings_account->balance, 350,
@@ -260,9 +261,9 @@ my $savings_account;
         '... withdrew from checking successfully'
     );
     is( $checking_account->balance, 50,
-        '... got the right checkings balance after withdrawl' );
+        '... got the right checkings balance after withdrawal' );
     is( $savings_account->balance, 350,
-        '... got the right savings balance after checking withdrawl (no overdraft)'
+        '... got the right savings balance after checking withdrawal (no overdraft)'
     );
 
     is(
@@ -273,9 +274,9 @@ my $savings_account;
         '... withdrew from checking successfully'
     );
     is( $checking_account->balance, 0,
-        '... got the right checkings balance after withdrawl' );
+        '... got the right checkings balance after withdrawal' );
     is( $savings_account->balance, 200,
-        '... got the right savings balance after overdraft withdrawl' );
+        '... got the right savings balance after overdraft withdrawal' );
 }
 
 {
@@ -301,7 +302,7 @@ my $savings_account;
         '... withdrew from checking successfully'
     );
     is( $checking_account->balance, 50,
-        '... got the right checkings balance after withdrawl' );
+        '... got the right checkings balance after withdrawal' );
 
     isnt(
         exception {
@@ -311,7 +312,7 @@ my $savings_account;
         '... withdrawal failed due to attempted overdraft'
     );
     is( $checking_account->balance, 50,
-        '... got the right checkings balance after withdrawl failure' );
+        '... got the right checkings balance after withdrawal failure' );
 }
 
 =end testing