From: Matthew Horsfall Date: Wed, 2 Mar 2011 16:28:33 +0000 (-0500) Subject: Minor pod grammar fixes. X-Git-Tag: 1.9904~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7d628d0401e292f60699b492c75b2d6c0cf643a6;p=gitmo%2FMoose.git Minor pod grammar fixes. --- diff --git a/lib/Moose/Manual/Roles.pod b/lib/Moose/Manual/Roles.pod index dcb29ba..594fac4 100644 --- a/lib/Moose/Manual/Roles.pod +++ b/lib/Moose/Manual/Roles.pod @@ -9,7 +9,7 @@ __END__ =head1 WHAT IS A ROLE? A role encapsulates some piece of behavior or state that can be shared between -classes. Is something that classes I. It is important to understand that +classes. It is something that classes I. It is important to understand that I. You cannot inherit from a role, and a role cannot be instantiated. We sometimes say that roles are I, either by classes or other roles. diff --git a/lib/Moose/Manual/Types.pod b/lib/Moose/Manual/Types.pod index 6a18b72..b4fda78 100644 --- a/lib/Moose/Manual/Types.pod +++ b/lib/Moose/Manual/Types.pod @@ -202,7 +202,7 @@ export your types as perl constants. has 'counter' => (is => 'rw', isa => PositiveInt); This lets you use a short name rather than needing to fully qualify the name -everywhere. It also allows you to write easily create parameterized types: +everywhere. It also allows you to easily create parameterized types: has 'counts' => (is => 'ro', isa => HashRef[PositiveInt]);