diff options
author | Johan Vromans <jvromans@squirrel.nl> | 2011-05-18 20:28:23 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-05-18 21:33:06 -0700 |
commit | 464042260c43e4b0a6a4521645150a588f13f251 (patch) | |
tree | 36eae4ff392a0822b1a2efe0c92b91da751c9666 /universal.c | |
parent | 011e8fb476b5fb27c9aa613360d918aa0b798b3d (diff) | |
download | perl-464042260c43e4b0a6a4521645150a588f13f251.tar.gz |
[perl #90054] Fix typo in universal.c
At XS(XS_UNIVERSAL_DOES), invocant is spelled wrong.
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |