Skip to content

Commit

Permalink
fix typo in class_addMethod
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Boucher committed Sep 18, 2008
1 parent 088fdf4 commit a64d1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objective-J/runtime.js
Expand Up @@ -159,7 +159,7 @@ function class_copyIvarList(/*Class*/ aClass)

//#define class_copyIvarList(aClass) (aClass.ivars.slice(0))

function class_addMethod(/*Class*/ aClass, /*SEL*/ aName, /*IMP*/ anImplementation, /*String*/types)
function class_addMethod(/*Class*/ aClass, /*SEL*/ aName, /*IMP*/ anImplementation, /*String*/aType)
{
if (aClass.method_hash[aName])
return NO;
Expand Down

0 comments on commit a64d1a1

Please sign in to comment.