diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-09-30 13:44:22 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-10-06 13:01:10 -0700 |
commit | d20c2c292901b2f1b65347fa9a1f361bb13de59b (patch) | |
tree | 84de6e87501876122f542622d14000d5e843dd7e /universal.c | |
parent | f778bcfda5fdc759036c3f3509c3a1a0f8a59f28 (diff) | |
download | perl-d20c2c292901b2f1b65347fa9a1f361bb13de59b.tar.gz |
Correct name of sv_does_sv apidoc entry
plus other tweaks
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/universal.c b/universal.c index 85709400af..855942ec8b 100644 --- a/universal.c +++ b/universal.c @@ -170,7 +170,7 @@ Perl_sv_derived_from_pvn(pTHX_ SV *sv, const char *const name, const STRLEN len, } /* -=for apidoc sv_does +=for apidoc sv_does_sv Returns a boolean indicating whether the SV performs a specific, named role. The SV can be a Perl object or the name of a Perl class. @@ -237,7 +237,7 @@ Perl_sv_does_sv(pTHX_ SV *sv, SV *namesv, U32 flags) /* =for apidoc sv_does -Exactly like L</sv_does_pv>, but doesn't take a C<flags> parameter. +Like L</sv_does_pv>, but doesn't take a C<flags> parameter. =cut */ @@ -252,7 +252,7 @@ Perl_sv_does(pTHX_ SV *sv, const char *const name) /* =for apidoc sv_does_pv -Exactly like L</sv_does_pvn>, but takes a nul-terminated string +Like L</sv_does_pvn>, but takes a nul-terminated string instead of a string/length pair. =cut |