Skip to content

Commit 338f2b6

Browse files
GrinnzLeont
authored andcommitted
fixes to pod formatting
1 parent f07efe2 commit 338f2b6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/Module/Build.pm

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ module through subclassing. It also does not require a C<make> on your
9595
system - most of the C<Module::Build> code is pure-perl and written in a
9696
very cross-platform way.
9797
98-
See L<"COMPARISON"> for more comparisons between C<Module::Build> and
98+
See L</"COMPARISON"> for more comparisons between C<Module::Build> and
9999
other installer tools.
100100
101101
To install C<Module::Build>, and any other module that uses
@@ -368,7 +368,7 @@ waste a lot of time if there aren't any links to generate anyway:
368368
[version 0.01]
369369
370370
This action will use C<ExtUtils::Install> to install the files from
371-
C<blib/> into the system. See L<"INSTALL PATHS">
371+
C<blib/> into the system. See L</"INSTALL PATHS">
372372
for details about how Module::Build determines where to install
373373
things, and how to influence this process.
374374
@@ -585,7 +585,7 @@ or use a C<glob()>-style pattern:
585585
586586
[Note: the 'testall' action and the code snippets below are currently
587587
in alpha stage, see
588-
L<"http://www.nntp.perl.org/group/perl.module.build/2007/03/msg584.html"> ]
588+
L<http://www.nntp.perl.org/group/perl.module.build/2007/03/msg584.html> ]
589589
590590
Runs the C<test> action plus each of the C<test$type> actions defined by
591591
the keys of the C<test_types> parameter.
@@ -987,9 +987,9 @@ A comparison between C<Module::Build> and other CPAN distribution installers.
987987
988988
=item *
989989
990-
L<ExtUtils::MakeMaker> requires C<make> and use of a C<Makefile>.
990+
L<ExtUtils::MakeMaker> requires C<make> and use of a F<Makefile>.
991991
C<Module::Build> does not, nor do other pure-perl installers following the
992-
C<Build.PL> spec such as L<Module::Build::Tiny>. In practice, this is usually
992+
F<Build.PL> spec such as L<Module::Build::Tiny>. In practice, this is usually
993993
not an issue for the end user, as C<make> is already required to install most
994994
CPAN modules, even on Windows.
995995
@@ -1007,8 +1007,8 @@ place of L<ExtUtils::MakeMaker>.
10071007
=item *
10081008
10091009
Customizing the build process with L<ExtUtils::MakeMaker> involves overriding
1010-
certain methods that form the C<Makefile> by defining the subs in the C<MY::>
1011-
namespace, requiring in-depth knowledge of C<Makefile>s, but allowing targeted
1010+
certain methods that form the F<Makefile> by defining the subs in the C<MY::>
1011+
namespace, requiring in-depth knowledge of F<Makefile>, but allowing targeted
10121012
customization of the entire build. Customizing C<Module::Build> involves
10131013
subclassing C<Module::Build> itself, adding or overriding pure-perl methods
10141014
that represent build actions, which are invoked as arguments passed to the
@@ -1023,10 +1023,10 @@ C<Module::Build> provides more features and a better experience for distribution
10231023
authors than L<ExtUtils::MakeMaker>. However, tools designed specifically for
10241024
authoring, such as L<Dist::Zilla> and its spinoffs L<Dist::Milla> and
10251025
L<Minilla>, provide these features and more, and generate a configure script
1026-
(C<Makefile.PL>/C<Build.PL>) that will use any of the various installers
1026+
(F<Makefile.PL>/F<Build.PL>) that will use any of the various installers
10271027
separately on the end user side. L<App::ModuleBuildTiny> is an alternative
10281028
standalone authoring tool for distributions using L<Module::Build::Tiny>, which
1029-
requires only a simple two-line C<Build.PL>.
1029+
requires only a simple two-line F<Build.PL>.
10301030
10311031
=back
10321032

0 commit comments

Comments
 (0)