doc typo fix
Matt S Trout [Wed, 18 Jul 2012 16:26:14 +0000 (16:26 +0000)]
Changes
lib/Safe/Isa.pm

diff --git a/Changes b/Changes
index 706f386..a34053e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,2 +1,4 @@
+  - Fix stupid doc typo (thanks miyagawa)
+
 1.000000 - 2012-07-18
   - Initial release
index b725f21..d13d01e 100644 (file)
@@ -69,9 +69,9 @@ And just in case we missed a method:
 
 Or to re-use a previous example for purposes of explication:
 
-  $foo->$_call_if_method(isa => 'Foo');  # true
-  $bar->$_call_if_method(isa => 'Foo');  # true
-  $blam->$_call_if_method(isa => 'Foo'); # false, no boom today
+  $foo->$_call_if_object(isa => 'Foo');  # true
+  $bar->$_call_if_object(isa => 'Foo');  # true
+  $blam->$_call_if_object(isa => 'Foo'); # false, no boom today
 
 =head1 DESCRIPTION