diff options
author | chromatic <chromatic@wgz.org> | 2006-05-14 09:51:36 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-05-15 11:29:59 +0000 |
commit | 6885da0efe41f13f2790ee02701364daa27dd4ce (patch) | |
tree | 3d634653dc123d099aea50cd513b4de3bebca904 /universal.c | |
parent | 71207a3462fa4c2b33c5608a4362ac40e975ecdb (diff) | |
download | perl-6885da0efe41f13f2790ee02701364daa27dd4ce.tar.gz |
[REPATCH universal.c] Make sv_derived_from Documentation Clearer
Message-Id: <200605141651.37181.chromatic@wgz.org>
p4raw-id: //depot/perl@28195
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 266613ed49..0601645836 100644 --- a/universal.c +++ b/universal.c @@ -130,9 +130,9 @@ S_isa_lookup(pTHX_ HV *stash, const char *name, HV* name_stash, =for apidoc sv_derived_from -Returns a boolean indicating whether the SV is derived from the specified -class. This is the function that implements C<UNIVERSAL::isa>. It works -for class names as well as for objects. +Returns a boolean indicating whether the SV is derived from the specified class +I<at the C level>. To check derivation at the Perl level, call C<isa()> as a +normal Perl method. =cut */ |