summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkafka <kafka@madrognon.net>2014-05-13 22:26:41 +0200
committerSteve Hay <steve.m.hay@googlemail.com>2014-08-25 01:23:18 +0100
commit29f645cc2d3becbbf9a9aa233bd3672a8428df8f (patch)
treebc22dbdb7a9cb9055092d37df0afbecd56faabb0
parent89a4389b7dfd6af1bbbd77051e7e2412146e7c30 (diff)
downloadperl-29f645cc2d3becbbf9a9aa233bd3672a8428df8f.tar.gz
Bring all lines in CoreList.pod under 80 cols
(cherry picked from commit 92c6a5ec9f11d991a91d37e304ca77f7a73aa1f9)
-rw-r--r--dist/Module-CoreList/lib/Module/CoreList.pod3
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/Module-CoreList/lib/Module/CoreList.pod b/dist/Module-CoreList/lib/Module/CoreList.pod
index e8f320b371..cc6ad1abbb 100644
--- a/dist/Module-CoreList/lib/Module/CoreList.pod
+++ b/dist/Module-CoreList/lib/Module/CoreList.pod
@@ -18,7 +18,8 @@ Module::CoreList - what modules shipped with versions of perl
print join ', ', Module::CoreList->find_modules(qr/Data/);
# prints 'Data::Dumper'
- print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
+ print join ', ',
+ Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
# prints 'Test::Harness::Assert, Test::Harness::Straps'
print join ", ", @{ $Module::CoreList::families{5.005} };