bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native.pm
index ec5bc28..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()>.