Fix typo in Color

This commit is contained in:
Grant Mathews 2017-02-19 08:48:46 +08:00 committed by GitHub
parent 2b8426a199
commit 432fc8b740

View file

@ -25,7 +25,7 @@ var Color = function (red, green, blue, alpha)
this.setTo(red, green, blue, alpha);
};
Color.prototype.contrusctor = Color;
Color.prototype.constructor = Color;
Color.prototype = {