summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-02-09 19:02:35 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-09 19:02:35 +0000
commit333d2f5b9a58ab91e4e1aabe0a6ec85bbc4cdfe0 (patch)
treeaf5b1b8bbd9cfa652b67373c9e91625a52e212f8
parent4b3bb87484fa37a377863549e2b17c35eabf1843 (diff)
downloadperl-333d2f5b9a58ab91e4e1aabe0a6ec85bbc4cdfe0.tar.gz
Forgotten fragment.
p4raw-id: //depot/perl@8749
-rw-r--r--pod/perlapi.pod14
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index aa50fbdf36..40d40fe9f0 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -2365,19 +2365,19 @@ false, defined or undefined. Does not handle 'get' magic.
=for hackers
Found in file sv.h
-=item SvTYPE
-
-Returns the type of the SV. See C<svtype>.
+=item svtype
- svtype SvTYPE(SV* sv)
+An enum of flags for Perl types. These are found in the file B<sv.h>
+in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
=for hackers
Found in file sv.h
-=item svtype
+=item SvTYPE
-An enum of flags for Perl types. These are found in the file B<sv.h>
-in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
+Returns the type of the SV. See C<svtype>.
+
+ svtype SvTYPE(SV* sv)
=for hackers
Found in file sv.h