Fix el(l)ipse spelling error

This commit is contained in:
Harry Lachenmayer 2013-12-19 00:05:32 +01:00
parent c9f79ea4d9
commit 576ff71683
6 changed files with 37 additions and 37 deletions

View file

@ -360,15 +360,15 @@ PIXI.Graphics.prototype.drawCircle = function( x, y, radius)
}
/**
* Draws an elipse.
* Draws an ellipse.
*
* @method drawElipse
* @method drawEllipse
* @param x {Number}
* @param y {Number}
* @param width {Number}
* @param height {Number}
*/
PIXI.Graphics.prototype.drawElipse = function( x, y, width, height)
PIXI.Graphics.prototype.drawEllipse = function( x, y, width, height)
{
if(this.currentPath.points.length == 0)this.graphicsData.pop();