From 464042260c43e4b0a6a4521645150a588f13f251 Mon Sep 17 00:00:00 2001 From: Johan Vromans Date: Wed, 18 May 2011 20:28:23 -0700 Subject: [PATCH] [perl #90054] Fix typo in universal.c At XS(XS_UNIVERSAL_DOES), invocant is spelled wrong. --- universal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1