We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea1d01b commit d67559dCopy full SHA for d67559d
1 file changed
src/math/Difference.js
@@ -5,15 +5,15 @@
5
*/
6
7
/**
8
- * [description]
+ * Calculates the positive difference of two given numbers.
9
*
10
* @function Phaser.Math.Difference
11
* @since 3.0.0
12
13
- * @param {number} a - [description]
14
- * @param {number} b - [description]
+ * @param {number} a - The first number in the calculation.
+ * @param {number} b - The second number in the calculation.
15
16
- * @return {number} [description]
+ * @return {number} The positive difference of the two given numbers
17
18
var Difference = function (a, b)
19
{
0 commit comments