summaryrefslogtreecommitdiff
path: root/mro_core.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-07 10:58:54 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 23:10:37 -0600
commit796b6530911f5ebd6a26275873610304e63d5d19 (patch)
tree9f90c198de8d45bde0c5a0e738d48ec5a005f023 /mro_core.c
parent6c5826743fef29ff17b421f17c5b09902acb164c (diff)
downloadperl-796b6530911f5ebd6a26275873610304e63d5d19.tar.gz
Various pods: Add C<> around many typed-as-is things
Removes 'the' in front of parameter names in some instances.
Diffstat (limited to 'mro_core.c')
-rw-r--r--mro_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mro_core.c b/mro_core.c
index d134b8acdc..c1e2da7cf1 100644
--- a/mro_core.c
+++ b/mro_core.c
@@ -199,7 +199,7 @@ Perl_mro_meta_dup(pTHX_ struct mro_meta* smeta, CLONE_PARAMS* param)
/*
=for apidoc mro_get_linear_isa_dfs
-Returns the Depth-First Search linearization of @ISA
+Returns the Depth-First Search linearization of C<@ISA>
the given stash. The return value is a read-only AV*.
C<level> should be 0 (it is used internally in this
function's recursion).
@@ -461,7 +461,7 @@ Perl_mro_get_linear_isa(pTHX_ HV *stash)
=for apidoc mro_isa_changed_in
Takes the necessary steps (cache invalidations, mostly)
-when the @ISA of the given package has changed. Invoked
+when the C<@ISA> of the given package has changed. Invoked
by the C<setisa> magic, should not need to invoke directly.
=cut