File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,9 @@ var utils = require('./utils');
5
5
var helpers = module . exports ;
6
6
7
7
/**
8
- * Return the product of `a` plus `b `.
8
+ * Return the magnitude of `a`.
9
9
*
10
10
* @param {Number } `a`
11
- * @param {Number } `b`
12
11
* @return {Number }
13
12
* @api public
14
13
*/
@@ -21,7 +20,7 @@ helpers.abs = function(num) {
21
20
} ;
22
21
23
22
/**
24
- * Return the product of `a` plus `b`.
23
+ * Return the sum of `a` plus `b`.
25
24
*
26
25
* @param {Number } `a`
27
26
* @param {Number } `b`
@@ -108,7 +107,7 @@ helpers.floor = function(num) {
108
107
} ;
109
108
110
109
/**
111
- * Return the product of `a` minus `b`.
110
+ * Return the difference of `a` minus `b`.
112
111
*
113
112
* @param {Number } `a`
114
113
* @param {Number } `b`
@@ -146,7 +145,7 @@ helpers.modulo = function(a, b) {
146
145
} ;
147
146
148
147
/**
149
- * Multiply number `a` by number `b`.
148
+ * Return the product of `a` times `b`.
150
149
*
151
150
* @param {Number } `a` factor
152
151
* @param {Number } `b` multiplier
You can’t perform that action at this time.
0 commit comments