From 455ab143f72d62c07c9cef46ad3a726e2dcde065 Mon Sep 17 00:00:00 2001 From: Niko Tyni Date: Sun, 6 Mar 2005 17:16:04 +0000 Subject: * lib/Smokeping/probes/base.pm: + probe documents had a 'SEE_ALSO' section; fixed to read "SEE ALSO". --- lib/Smokeping/probes/base.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Smokeping/probes/base.pm b/lib/Smokeping/probes/base.pm index 4ae81b5..a322a21 100644 --- a/lib/Smokeping/probes/base.pm +++ b/lib/Smokeping/probes/base.pm @@ -47,7 +47,9 @@ sub pod { for my $what (qw(name overview synopsis description variables authors notes bugs see_also)) { my $contents = $podhash->{$what}; next if not defined $contents or $contents eq ""; - $pod .= "=head1 " . uc $what . "\n\n"; + my $headline = uc $what; + $headline =~ s/_/ /; # see_also => SEE ALSO + $pod .= "=head1 $headline\n\n"; $pod .= $contents; chomp $pod; $pod .= "\n\n"; -- cgit v1.2.3-24-g4f1b