summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-20 02:33:32 -0500
committerdoy <doy@tozt.net>2009-04-20 02:33:32 -0500
commit6508a38eea2e95602d80a7aa48a1310aca7042e0 (patch)
treeaa0f81979a4a7fb45af60063a8b7f0cf61249847 /lib
parent1ea00b77a1552c29b81c7c16822e9f743e271486 (diff)
downloadmoosex-nonmoose-6508a38eea2e95602d80a7aa48a1310aca7042e0.tar.gz
moosex-nonmoose-6508a38eea2e95602d80a7aa48a1310aca7042e0.zip
doc cleanups
Diffstat (limited to 'lib')
-rw-r--r--lib/MooseX/NonMoose.pm16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/MooseX/NonMoose.pm b/lib/MooseX/NonMoose.pm
index 56d82ee..3613db8 100644
--- a/lib/MooseX/NonMoose.pm
+++ b/lib/MooseX/NonMoose.pm
@@ -42,11 +42,11 @@ the same terms as perl itself.
=over 4
-=item Provide some way to manipulate the argument list that gets passed to the
+=item * Provide some way to manipulate the argument list that gets passed to the
superclass constructor, to support setting attributes in the constructor for a
subclass of a class whose constructor does strict argument checking.
-=item Allow for constructors with names other than 'C<new>'.
+=item * Allow for constructors with names other than C<new>.
=back
@@ -59,22 +59,22 @@ far more hackish and worse) implementation.
=over 4
-=item The reference that the non-Moose class uses as its instance type B<must>
+=item * The reference that the non-Moose class uses as its instance type B<must>
match the instance type that Moose is using (currently, Moose only supports
hashref based instances).
-=item Arguments passed to the constructor will be passed as-is to the
+=item * Arguments passed to the constructor will be passed as-is to the
superclass constructor - there is currently no BUILDARGS-like munging available
for this step (BUILDARGS is still available to munge the argument list that
Moose sees).
-=item Completely overriding the constructor in a class using
-C<MooseX::NonMoose> (i.e. using "C<sub new { ... }>") currently doesn't work,
+=item * Completely overriding the constructor in a class using
+C<MooseX::NonMoose> (i.e. using C<sub new { ... }>) currently doesn't work,
although using method modifiers on the constructor should work identically to
normal Moose classes.
-=item C<MooseX::NonMoose> currently assumes in several places that the
-superclass constructor will be called 'C<new>'. This may be made configurable
+=item * C<MooseX::NonMoose> currently assumes in several places that the
+superclass constructor will be called C<new>. This may be made configurable
in the future.
=back