diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-04-14 20:52:56 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2007-04-14 20:52:56 +0000 |
commit | 26be3db717882c3665b99168897e18fa49bf9400 (patch) | |
tree | 7e546e0264daacde232e13c0e8e3628fc47611dd /universal.c | |
parent | 187a5aa6a4d7c9f1fb9d55ab81e9f793b396e24a (diff) | |
download | perl-26be3db717882c3665b99168897e18fa49bf9400.tar.gz |
Typo in croak message
p4raw-id: //depot/perl@30951
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 182b5c9638..d876c6ced3 100644 --- a/universal.c +++ b/universal.c @@ -422,7 +422,7 @@ XS(XS_UNIVERSAL_DOES) PERL_UNUSED_ARG(cv); if (items != 2) - Perl_croak(aTHX_ "Usage: invocant->does(kind)"); + Perl_croak(aTHX_ "Usage: invocant->DOES(kind)"); else { SV * const sv = ST(0); const char *name; |