From: Shawn M Moore Date: Tue, 24 Jun 2008 06:04:46 +0000 (+0000) Subject: Fix another typo X-Git-Tag: 0_55~98 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0206f6d635d0e27da7abe689ba422aa314c7aaca;p=gitmo%2FMoose.git Fix another typo --- diff --git a/Changes b/Changes index 82b997f..1470cd9 100644 --- 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 diff --git a/lib/Moose/Meta/Role/Application/RoleSummation.pm b/lib/Moose/Meta/Role/Application/RoleSummation.pm index fe27258..99b0b3b 100644 --- a/lib/Moose/Meta/Role/Application/RoleSummation.pm +++ b/lib/Moose/Meta/Role/Application/RoleSummation.pm @@ -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}; }