Clarify comment after refactoring
Dave Rolsky [Sat, 14 Aug 2010 16:29:30 +0000 (18:29 +0200)]
lib/Class/MOP/Mixin/HasMethods.pm

index cd11a8f..8e38d5e 100644 (file)
@@ -108,10 +108,10 @@ sub get_method {
         }
     );
 
-    # This seems to happen in some weird cases where methods modifiers are
-    # added via roles or some other such bizareness. Honestly, I don't totally
-    # understand this, but returning the entry works, and keeps various MX
-    # modules from blowing up. - DR
+    # The !$code case seems to happen in some weird cases where methods
+    # modifiers are added via roles or some other such bizareness. Honestly, I
+    # don't totally understand this, but returning the entry works, and keeps
+    # various MX modules from blowing up. - DR
     return $map_entry
         if blessed $map_entry && ( !$code || $map_entry->body == $code );