Subject: | missing =back in POD |
Date: | Fri, 5 Oct 2012 22:38:46 +0200 |
To: | bug-Module-Build-WithXSpp [...] rt.cpan.org |
From: | Florian Schlichting <fschlich [...] ZEDAT.FU-Berlin.DE> |
Hi,
while packaging Module-Build-WithXSpp for Debian, our QA tools called my
attention to a lacking =back in the POD leading to an ugly warning (plus a
typo), and I thought I'd share the patch for inclusion whenever convenient:
--- a/lib/Module/Build/WithXSpp.pm
+++ b/lib/Module/Build/WithXSpp.pm
@@ -588,7 +588,7 @@
collide. They will be merged at build time into a complete F<typemap> file
in the temporary build directory.
-The C<extra_typemap_modules> option is the prefered way to do XS typemapping.
+The C<extra_typemap_modules> option is the preferred way to do XS typemapping.
It works like any other C<Module::Build> argument that declares dependencies
except that it loads the listed modules at build time and includes their
typemaps into the build.
@@ -722,6 +722,8 @@
require XSLoader;
XSLoader::load('My::Module', $VERSION);
+=back
+
=head1 SEE ALSO
L<Module::Build> upon which this module is based.
Florian