Fill all description tags for Phaser.Math.Factorial

This commit is contained in:
Daniel 2018-04-22 16:53:35 +10:00
parent 2c584d3d0e
commit d7c5d8951a

View file

@ -5,15 +5,15 @@
*/
/**
* [description]
* Generate a random floating point number between the given maximum and minimum bounds with the minimum bound inclusive, maximum bound exclusive.
*
* @function Phaser.Math.FloatBetween
* @since 3.0.0
*
* @param {float} min - [description]
* @param {float} max - [description]
* @param {float} min - The minimum bound of the generated float (inclusive).
* @param {float} max - The maximum bound of the generated float (exclusive).
*
* @return {float} [description]
* @return {float} The randomly generated float.
*/
var FloatBetween = function (min, max)
{