summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-03 13:27:05 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-03 13:27:05 -0500
commitff493bcff39603db6ff47e911bc1ad3f5dc37b38 (patch)
tree1ee620cd61cde1f525d6fc868db167a93fb4b586
parent4ebe91bbb137cfc03acaf5434dc1b8a30bf230d7 (diff)
downloadmoosex-abc-ff493bcff39603db6ff47e911bc1ad3f5dc37b38.tar.gz
moosex-abc-ff493bcff39603db6ff47e911bc1ad3f5dc37b38.zip
formatting
-rw-r--r--lib/MooseX/ABC.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/MooseX/ABC.pm b/lib/MooseX/ABC.pm
index c8eec75..2ba828e 100644
--- a/lib/MooseX/ABC.pm
+++ b/lib/MooseX/ABC.pm
@@ -32,7 +32,11 @@ MooseX::ABC - abstract base classes for Moose
=head1 DESCRIPTION
-This module adds basic abstract base class functionality to Moose. Doing C<use MooseX::ABC> turns the using class into an abstract class - it cannot be instantiated. It also allows you to mark certain methods in the class as L</required>, meaning that if a class inherits from this class without implementing that method, it will die at compile time.
+This module adds basic abstract base class functionality to Moose. Doing
+C<use MooseX::ABC> turns the using class into an abstract class - it cannot be
+instantiated. It also allows you to mark certain methods in the class as
+L</required>, meaning that if a class inherits from this class without
+implementing that method, it will die at compile time.
=cut
@@ -42,7 +46,9 @@ This module adds basic abstract base class functionality to Moose. Doing C<use M
=head2 requires METHOD_NAMES
-Takes a list of methods that classes inheriting from this one must implement. If a class inherits from this class without implementing each method listed here, an error will be thrown when compiling the class.
+Takes a list of methods that classes inheriting from this one must implement.
+If a class inherits from this class without implementing each method listed
+here, an error will be thrown when compiling the class.
=cut