From 671666e8424541c19104ed4dccb152299b3eed58 Mon Sep 17 00:00:00 2001 From: Francisco Ryan Tolmasky I Date: Tue, 31 May 2011 01:27:41 -0700 Subject: [PATCH] Fix selector typo. Reviewed by me. --- Objective-J/Runtime.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/Runtime.js b/Objective-J/Runtime.js index 20db83f3c..413649cad 100644 --- a/Objective-J/Runtime.js +++ b/Objective-J/Runtime.js @@ -711,7 +711,7 @@ objj_class.prototype.toString = objj_object.prototype.toString = function() var isa = this.isa; if (class_getInstanceMethod(isa, SEL_description)) - return objj_msgSend(this, description); + return objj_msgSend(this, SEL_description); if (class_isMetaClass(isa)) return this.name;