summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-28 06:50:29 -0600
committerKarl Williamson <khw@cpan.org>2020-09-04 17:20:26 -0600
commit8890fded62623995efdbb4ca35b1c1c0416efc38 (patch)
tree6122de90f9776640071c1acf34d0fbb318945387 /sv.h
parent912c81412b5d75cc27d57e57adfcac6afc1a3125 (diff)
downloadperl-8890fded62623995efdbb4ca35b1c1c0416efc38.tar.gz
perlapi: Turn some references to mg_[gs]et into links
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index b97ca21431..aae04cda54 100644
--- a/sv.h
+++ b/sv.h
@@ -2098,12 +2098,12 @@ incremented.
=head1 Magic
=for apidoc Am|void|SvGETMAGIC|SV* sv
-Invokes C<mg_get> on an SV if it has 'get' magic. For example, this
+Invokes C<L</mg_get>> on an SV if it has 'get' magic. For example, this
will call C<FETCH> on a tied variable. This macro evaluates its
argument more than once.
=for apidoc Am|void|SvSETMAGIC|SV* sv
-Invokes C<mg_set> on an SV if it has 'set' magic. This is necessary
+Invokes C<L</mg_set>> on an SV if it has 'set' magic. This is necessary
after modifying a scalar, in case it is a magical variable like C<$|>
or a tied variable (it calls C<STORE>). This macro evaluates its
argument more than once.