From: Dave Rolsky Date: Sun, 18 Nov 2007 00:08:41 +0000 (+0000) Subject: Fix a couple spelling errors in the comments. X-Git-Tag: 0_46~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=840863654cda30c0f62733987ed654cdf42055cf;p=gitmo%2FClass-MOP.git Fix a couple spelling errors in the comments. --- diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index 403e5e8..e3b70d1 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -377,7 +377,7 @@ sub superclasses { @{$self->get_package_symbol('@ISA')} = @supers; # NOTE: # we need to check the metaclass - # compatability here so that we can + # compatibility here so that we can # be sure that the superclass is # not potentially creating an issues # we don't know about @@ -389,7 +389,7 @@ sub superclasses { sub class_precedence_list { my $self = shift; # NOTE: - # We need to check for ciruclar inheirtance here. + # We need to check for circular inheritance here. # This will do nothing if all is well, and blow # up otherwise. Yes, it's an ugly hack, better # suggestions are welcome.