summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-27 15:23:41 -0600
committerKarl Williamson <khw@cpan.org>2020-12-27 12:43:55 -0700
commit2e056cf94a7ce6085dd18a17e472fb202d07149a (patch)
treee4a13b9d7a6626bd984438ebe7fb04d0d7ff98c0 /sv.c
parent808580607a3c1858a97a41b7dc5e2d0ea25b63a6 (diff)
downloadperl-2e056cf94a7ce6085dd18a17e472fb202d07149a.tar.gz
perlapi: Turn reference to SvSHARED_HASH into a link
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index ed0b6bdd30..f906901620 100644
--- a/sv.c
+++ b/sv.c
@@ -9457,7 +9457,7 @@ created first. Turns on the C<SvIsCOW> flag (or C<READONLY>
and C<FAKE> in 5.16 and earlier). If the C<hash> parameter
is non-zero, that value is used; otherwise the hash is computed.
The string's hash can later be retrieved from the SV
-with the C<SvSHARED_HASH()> macro. The idea here is
+with the C<L</SvSHARED_HASH>> macro. The idea here is
that as the string table is used for shared hash keys these strings will have
C<SvPVX_const == HeKEY> and hash lookup will avoid string compare.