Skip to content

Commit 4a3f429

Browse files
committed
Fuzzy.Floor had an incorrect method signature.
1 parent 3f155bf commit 4a3f429

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/math/fuzzy/Floor.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
* @function Phaser.Math.Fuzzy.Floor
1111
* @since 3.0.0
1212
*
13-
* @param {number} a - [description]
14-
* @param {number} b - [description]
13+
* @param {number} value - [description]
1514
* @param {float} [epsilon=0.0001] - [description]
1615
*
1716
* @return {number} [description]
1817
*/
19-
var Floor = function (a, b, epsilon)
18+
var Floor = function (value, epsilon)
2019
{
2120
if (epsilon === undefined) { epsilon = 0.0001; }
2221

0 commit comments

Comments
 (0)