diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-22 09:33:00 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-22 09:33:00 -0700 |
commit | 2616800a6ed97301803de10c5e05d41b22088ec8 (patch) | |
tree | 1131f096b3a392481c60abdde68d4e5bf1db44cd /autodoc.pl | |
parent | 8a62f54fb8cb0951a0ef5e5c89e5027922be9403 (diff) | |
download | perl-2616800a6ed97301803de10c5e05d41b22088ec8.tar.gz |
Revise perlintern’s descr of undocumented funcs
Diffstat (limited to 'autodoc.pl')
-rw-r--r-- | autodoc.pl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/autodoc.pl b/autodoc.pl index 186ebd2411..c1e25787fb 100644 --- a/autodoc.pl +++ b/autodoc.pl @@ -271,7 +271,7 @@ _EOH_ if (@$missing) { print $fh "\n=head1 Undocumented functions\n\n"; - print $fh <<'_EOB_'; + print $fh $podname eq 'perlapi' ? <<'_EOB_' : <<'_EOB_'; The following functions have been flagged as part of the public API, but are currently undocumented. Use them at your own risk, as the interfaces are subject to change. @@ -283,6 +283,13 @@ the interface is stable (unless it is explicitly marked otherwise). =over _EOB_ +The following functions are currently undocumented. If you use one of +them, you may wish to consider creating and submitting documentation for +it. + +=over + +_EOB_ for my $missing (sort @$missing) { print $fh "=item $missing\nX<$missing>\n\n"; } |