diff options
-rw-r--r-- | perl.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.html.markdown b/perl.html.markdown index 7e0b1183..fec4ce05 100644 --- a/perl.html.markdown +++ b/perl.html.markdown @@ -112,9 +112,9 @@ $a =~ s/foo/bar/g; # replaces ALL INSTANCES of foo with bar in $a #### Using Perl modules -# Perl modules provide a range of features to help you avoid reinventing the wheel, and can be downloaded from CPAN ( http://www.cpan.org/ ). A number of popular modules are included with the Perl distribution itself. +Perl modules provide a range of features to help you avoid reinventing the wheel, and can be downloaded from CPAN ( http://www.cpan.org/ ). A number of popular modules are included with the Perl distribution itself. -# perlfaq contains questions and answers related to many common tasks, and often provides suggestions for good CPAN modules to use. +perlfaq contains questions and answers related to many common tasks, and often provides suggestions for good CPAN modules to use. #### Further Reading |