Fix a couple spelling errors in the comments.
Dave Rolsky [Sun, 18 Nov 2007 00:08:41 +0000 (00:08 +0000)]
lib/Class/MOP/Class.pm

index 403e5e8..e3b70d1 100644 (file)
@@ -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.