minor clean up based on feedback

This commit is contained in:
Chad Engler 2013-07-08 19:50:34 -07:00
parent 2a1e3910a4
commit 206efa6f7d
3 changed files with 4 additions and 5 deletions

View file

@ -47,7 +47,7 @@ PIXI.Ellipse = function(x, y, width, height)
* Creates a clone of this Ellipse instance
*
* @method clone
* @return {Ellipse} a copy of the polygon
* @return {Ellipse} a copy of the ellipse
*/
PIXI.Ellipse.prototype.clone = function()
{
@ -60,7 +60,7 @@ PIXI.Ellipse.prototype.clone = function()
* @method contains
* @param x {Number} The X coord of the point to test
* @param y {Number} The Y coord of the point to test
* @return {Boolean} if the x/y coords are within this polygon
* @return {Boolean} if the x/y coords are within this ellipse
*/
PIXI.Ellipse.prototype.contains = function(x, y)
{