From 0727541e05194b7258dd2302e8c97be6fba07c2f Mon Sep 17 00:00:00 2001 From: Nicholas Howell Date: Wed, 19 Feb 2014 13:47:54 -0500 Subject: [PATCH] Fix typo of Phaser.Line.intersectsPoints for docs --- src/geom/Line.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geom/Line.js b/src/geom/Line.js index 2e8e4fe5..cd347e61 100644 --- a/src/geom/Line.js +++ b/src/geom/Line.js @@ -186,7 +186,7 @@ Object.defineProperty(Phaser.Line.prototype, "perpSlope", { * Returns the intersection segment of AB and EF as a Point, or null if there is no intersection. * Adapted from code by Keith Hair * -* @method Phaser.Line.intersects +* @method Phaser.Line.intersectsPoints * @param {Phaser.Point} a - The start of the first Line to be checked. * @param {Phaser.Point} b - The end of the first line to be checked. * @param {Phaser.Point} e - The start of the second Line to be checked.