bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native.pm
index dc3e5aa..9094fbf 100644 (file)
@@ -1,6 +1,6 @@
 package Moose::Meta::Attribute::Native;
 
-our $VERSION   = '1.15';
+our $VERSION   = '1.18';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -70,7 +70,7 @@ Moose::Meta::Attribute::Native - Delegate to native Perl types
 =head1 DESCRIPTION
 
 Native delegations allow you to delegate to native Perl data
-structure as if they were objects. For example, in the L</SYNOPSIS> you can
+structures as if they were objects. For example, in the L</SYNOPSIS> you can
 see a hash reference being treated as if it has methods named C<exists()>,
 C<keys()>, C<get()>, and C<set()>.
 
@@ -110,7 +110,7 @@ See the docs for each native trait for details on what methods are available.
 =head2 is
 
 Some traits provide a default C<is> for historical reasons. This behavior is
-deprecated, and you are strongly encourage to provide a value. If you don't
+deprecated, and you are strongly encouraged to provide a value. If you don't
 plan to read and write the attribute value directly, you can set C<< is =>
 'bare' >> to prevent standard accessor generation.