diff options
Diffstat (limited to 'cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm')
-rw-r--r-- | cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm index 14c3ba85d2..9a8f902e52 100644 --- a/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm +++ b/cpan/Pod-Simple/lib/Pod/Simple/LinkSection.pm @@ -2,9 +2,13 @@ require 5; package Pod::Simple::LinkSection; # Based somewhat dimly on Array::Autojoin +use vars qw($VERSION ); +$VERSION = '3.11'; use strict; use Pod::Simple::BlackBox; +use vars qw($VERSION ); +$VERSION = '3.11'; use overload( # So it'll stringify nice '""' => \&Pod::Simple::BlackBox::stringify_lol, @@ -126,9 +130,22 @@ Output: L<Pod::Simple> +=head1 SUPPORT + +Questions or discussion about POD and Pod::Simple should be sent to the +pod-people@perl.org mail list. Send an empty email to +pod-people-subscribe@perl.org to subscribe. + +This module is managed in an open GitHub repository, +L<http://github.com/theory/pod-simple/>. Feel free to fork and contribute, or +to clone L<git://github.com/theory/pod-simple.git> and send patches! + +Patches against Pod::Simple are welcome. Please send bug reports to +<bug-pod-simple@rt.cpan.org>. + =head1 COPYRIGHT AND DISCLAIMERS -Copyright (c) 2002 Sean M. Burke. All rights reserved. +Copyright (c) 2004 Sean M. Burke. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. @@ -139,7 +156,19 @@ merchantability or fitness for a particular purpose. =head1 AUTHOR -Sean M. Burke C<sburke@cpan.org> +Pod::Simple was created by Sean M. Burke <sburke@cpan.org>. +But don't bother him, he's retired. -=cut +Pod::Simple is maintained by: + +=over +=item * Allison Randal C<allison@perl.org> + +=item * Hans Dieter Pearcey C<hdp@cpan.org> + +=item * David E. Wheeler C<dwheeler@cpan.org> + +=back + +=cut |