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 /pod/perlapi.pod | |
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 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index c3b6074873..400b329ca1 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -4557,9 +4557,9 @@ Found in file sv.h =item sv_derived_from X<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. bool sv_derived_from(SV* sv, const char* name) |