summaryrefslogtreecommitdiff
path: root/hv.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-04-23 18:33:15 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 20:59:57 -0600
commitfbe13c605d92f73c90ff4702b76a97c5e12927a7 (patch)
tree774ab7f101ca4ec12b2a2180282a5274aa577dc2 /hv.h
parent3c0792e45ff76456148c62f3bbc4873623151f56 (diff)
downloadperl-fbe13c605d92f73c90ff4702b76a97c5e12927a7.tar.gz
perlapi, perlintern: Add L<> links to pod
Diffstat (limited to 'hv.h')
-rw-r--r--hv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hv.h b/hv.h
index 9533af58f2..c6cc0fa45a 100644
--- a/hv.h
+++ b/hv.h
@@ -153,7 +153,7 @@ Null HV pointer.
=for apidoc Am|char*|HvNAME|HV* stash
Returns the package name of a stash, or NULL if C<stash> isn't a stash.
-See C<SvSTASH>, C<CvSTASH>.
+See C<L</SvSTASH>>, C<L</CvSTASH>>.
=for apidoc Am|STRLEN|HvNAMELEN|HV *stash
Returns the length of the stash's name.
@@ -208,7 +208,7 @@ variable C<PL_na>, though this is rather less efficient than using a local
variable. Remember though, that hash keys in perl are free to contain
embedded nulls, so using C<strlen()> or similar is not a good way to find
the length of hash keys. This is very similar to the C<SvPV()> macro
-described elsewhere in this document. See also C<HeUTF8>.
+described elsewhere in this document. See also C<L</HeUTF8>>.
If you are using C<HePV> to get values to pass to C<newSVpvn()> to create a
new SV, you should consider using C<newSVhek(HeKEY_hek(he))> as it is more