Fix another typo
Shawn M Moore [Tue, 24 Jun 2008 06:04:46 +0000 (06:04 +0000)]
Changes
lib/Moose/Meta/Role/Application/RoleSummation.pm

diff --git a/Changes b/Changes
index 82b997f..1470cd9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -27,7 +27,8 @@ Revision history for Perl extension Moose
         - added tests for this (sartak)
 
     * Moose::Object
-      - fix a typo in ->does (sartak)
+    * Moose::Meta::Role::Application::RoleSummation
+      - fix typos no one ever sees (sartak)
 
 0.50 Thurs. Jun 11, 2008
     - Fixed a version number issue by bumping all modules
index fe27258..99b0b3b 100644 (file)
@@ -119,7 +119,7 @@ sub apply_attributes {
     my %seen;
     foreach my $attr (@all_attributes) {
         if (exists $seen{$attr->{name}}) {
-            confess "We have encountered an attribute conflict with '" . $attr->{name} . "'" 
+            confess "We have encountered an attribute conflict with '" . $attr->{name} . "' " 
                   . "during composition. This is fatal error and cannot be disambiguated."
                 if $seen{$attr->{name}} != $attr->{attr};           
         }