From: Matt S Trout Date: Wed, 18 Jul 2012 16:26:14 +0000 (+0000) Subject: doc typo fix X-Git-Tag: v1.000001~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=ff9518c5d6d6ba5ff3481d38ab349dbde86f9ec6 doc typo fix --- diff --git a/Changes b/Changes index 706f386..a34053e 100644 --- a/Changes +++ b/Changes @@ -1,2 +1,4 @@ + - Fix stupid doc typo (thanks miyagawa) + 1.000000 - 2012-07-18 - Initial release diff --git a/lib/Safe/Isa.pm b/lib/Safe/Isa.pm index b725f21..d13d01e 100644 --- a/lib/Safe/Isa.pm +++ b/lib/Safe/Isa.pm @@ -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