From: Johan Vromans Date: Thu, 19 May 2011 03:28:23 +0000 (-0700) Subject: [perl #90054] Fix typo in universal.c X-Git-Tag: upstream/5.16.3~4210 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=464042260c43e4b0a6a4521645150a588f13f251;p=platform%2Fupstream%2Fperl.git [perl #90054] Fix typo in universal.c At XS(XS_UNIVERSAL_DOES), invocant is spelled wrong. --- diff --git a/universal.c b/universal.c index 07bbe96504..145d860bc6 100644 --- a/universal.c +++ b/universal.c @@ -290,7 +290,7 @@ XS(XS_UNIVERSAL_DOES) PERL_UNUSED_ARG(cv); if (items != 2) - Perl_croak(aTHX_ "Usage: invocand->DOES(kind)"); + Perl_croak(aTHX_ "Usage: invocant->DOES(kind)"); else { SV * const sv = ST(0); const char *name;