Skip to content

Commit

Permalink
Fix type.js closure compiler gag
Browse files Browse the repository at this point in the history
  • Loading branch information
blacatena committed Mar 5, 2013
1 parent 8847a8e commit 340413e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/type.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ Sk.builtin.type.prototype.tp$richcompare = function(other, op)
if (!this['$r'] || !other['$r'])
return undefined;

var r1 = this.$r();
var r2 = other.$r();
var r1 = this['$r']();
var r2 = other['$r']();

return r1.tp$richcompare(r2, op);
};

0 comments on commit 340413e

Please sign in to comment.