From: Dave Rolsky <autarch@urth.org>
Date: Wed, 27 Oct 2010 02:12:46 +0000 (-0500)
Subject: Fix grammar in warning
X-Git-Tag: 1.18~43
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=557ae2ff60d085bf1550a3c5a4e8b7452595e912;p=gitmo%2FMoose.git

Fix grammar in warning
---

diff --git a/lib/Moose/Meta/Attribute/Native/Trait.pm b/lib/Moose/Meta/Attribute/Native/Trait.pm
index f5013ab..5114270 100644
--- a/lib/Moose/Meta/Attribute/Native/Trait.pm
+++ b/lib/Moose/Meta/Attribute/Native/Trait.pm
@@ -45,7 +45,7 @@ before '_process_options' => sub {
             feature => 'default default for Native Trait',
             message =>
                 'Allowing a native trait to automatically supply a default is deprecated.'
-                . ' You can avoid this warning by supply a default, builder, or making the attribute required'
+                . ' You can avoid this warning by supplying a default, builder, or making the attribute required'
         );
     }
 };