summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc.pl b/autodoc.pl
index 65e6f9d969..6a3447e4e0 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -639,7 +639,7 @@ sub autodoc ($$) { # parse a file and extract documentation info
if ($element_name) {
# Here, we have accumulated into $text, the pod for $element_name
- my $where = $flags =~ /A/ ? 'api' : 'guts';
+ my $where = $flags =~ /A/ ? 'api' : 'intern';
die "No =for apidoc_section nor =head1 in $file for '$element_name'\n"
unless defined $section;
@@ -1896,10 +1896,10 @@ _EOB_
_EOE_
# List of non-static internal functions
-my @missing_guts =
- grep $funcflags{$_}{flags} !~ /[AS]/ && !$docs{guts}{$_}, keys %funcflags;
+my @missing_intern =
+ grep $funcflags{$_}{flags} !~ /[AS]/ && !$docs{intern}{$_}, keys %funcflags;
-output('perlintern', <<'_EOB_', $docs{guts}, \@missing_guts, <<"_EOE_");
+output('perlintern', <<'_EOB_', $docs{intern}, \@missing_intern, <<"_EOE_");
|=head1 NAME
|
|perlintern - autogenerated documentation of purely B<internal>