summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-06-08 06:57:59 -0600
committerKarl Williamson <khw@cpan.org>2022-06-14 07:38:50 -0600
commit3734d2f5d38a7779376358fb891b3d3a38e6c0d8 (patch)
treefa494e354d196c12751d94e9820d8198d76396a5 /scope.h
parent82943faa9f6f51aebb7960cc8eee73dd44c024e4 (diff)
downloadperl-3734d2f5d38a7779376358fb891b3d3a38e6c0d8.tar.gz
Change autodoc flag
This should be being used only in core, as its only use is for autodoc. Change the flag name to be more mnemonic, freeing up its current name for another use.
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/scope.h b/scope.h
index 6111f1e460..911f752caa 100644
--- a/scope.h
+++ b/scope.h
@@ -155,26 +155,26 @@
/*
=for apidoc_section $callback
-=for apidoc Amns||SAVETMPS
+=for apidoc Amn;||SAVETMPS
Opening bracket for temporaries on a callback. See C<L</FREETMPS>> and
L<perlcall>.
-=for apidoc Amns||FREETMPS
+=for apidoc Amn;||FREETMPS
Closing bracket for temporaries on a callback. See C<L</SAVETMPS>> and
L<perlcall>.
-=for apidoc Amns||ENTER
+=for apidoc Amn;||ENTER
Opening bracket on a callback. See C<L</LEAVE>> and L<perlcall>.
-=for apidoc Amns||LEAVE
+=for apidoc Amn;||LEAVE
Closing bracket on a callback. See C<L</ENTER>> and L<perlcall>.
-=for apidoc Ams||ENTER_with_name|"name"
+=for apidoc Am;||ENTER_with_name|"name"
Same as C<L</ENTER>>, but when debugging is enabled it also associates the
given literal string with the new scope.
-=for apidoc Ams||LEAVE_with_name|"name"
+=for apidoc Am;||LEAVE_with_name|"name"
Same as C<L</LEAVE>>, but when debugging is enabled it first checks that the
scope has the given name. C<name> must be a literal string.