Minor pod grammar fixes.
Matthew Horsfall [Wed, 2 Mar 2011 16:28:33 +0000 (11:28 -0500)]
lib/Moose/Manual/Roles.pod
lib/Moose/Manual/Types.pod

index dcb29ba..594fac4 100644 (file)
@@ -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<do>. It is important to understand that
+classes. It is something that classes I<do>. It is important to understand that
 I<roles are not classes>. You cannot inherit from a role, and a role cannot be
 instantiated. We sometimes say that roles are I<consumed>, either by classes
 or other roles.
index 6a18b72..b4fda78 100644 (file)
@@ -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]);