From: Dave Rolsky <autarch@urth.org>
Date: Tue, 24 Jun 2008 04:22:17 +0000 (+0000)
Subject: Fix a typo in an error message that probably never gets seen.
X-Git-Tag: 0_64~10
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bb99e529a5f83061c628aa2723db71413af6733a;p=gitmo%2FClass-MOP.git

Fix a typo in an error message that probably never gets seen.
---

diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm
index 0c43230..dc7042c 100644
--- a/lib/Class/MOP/Class.pm
+++ b/lib/Class/MOP/Class.pm
@@ -586,7 +586,7 @@ sub add_method {
         $body = $method->body;
         if ($method->package_name ne $self->name && 
             $method->name         ne $method_name) {
-            warn "Hello there, got somethig for you." 
+            warn "Hello there, got something for you." 
                 . " Method says " . $method->package_name . " " . $method->name
                 . " Class says " . $self->name . " " . $method_name;
             $method = $method->clone(