Skip to content

Commit 6fa2c20

Browse files
committed
style: add missing spaces
1 parent ac93021 commit 6fa2c20

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/math/base/tools/evalpoly/lib/factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var evalpoly = require( './main.js' );
3939
* @returns {Function} function for evaluating a polynomial
4040
*
4141
* @example
42-
* var polyval = factory( [3.0,2.0,1.0] );
42+
* var polyval = factory( [ 3.0, 2.0, 1.0 ] );
4343
*
4444
* var v = polyval( 10.0 ); // => 3*10^0 + 2*10^1 + 1*10^2
4545
* // returns 123.0

lib/node_modules/@stdlib/math/base/tools/evalpoly/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@
2626
* @example
2727
* var evalpoly = require( '@stdlib/math/base/tools/evalpoly' );
2828
*
29-
* var v = evalpoly( [3.0,2.0,1.0], 10.0 ); // 3*10^0 + 2*10^1 + 1*10^2
29+
* var v = evalpoly( [ 3.0, 2.0, 1.0 ], 10.0 ); // 3*10^0 + 2*10^1 + 1*10^2
3030
* // returns 123.0
3131
*
3232
* @example
3333
* var evalpoly = require( '@stdlib/math/base/tools/evalpoly' );
3434
*
35-
* var polyval = evalpoly.factory( [3.0,2.0,1.0] );
35+
* var polyval = evalpoly.factory( [ 3.0, 2.0, 1.0 ] );
3636
*
3737
* var v = polyval( 10.0 ); // => 3*10^0 + 2*10^1 + 1*10^2
3838
* // returns 123.0

lib/node_modules/@stdlib/math/base/tools/evalpoly/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @returns {number} evaluated polynomial
3535
*
3636
* @example
37-
* var v = evalpoly( [3.0,2.0,1.0], 10.0 ); // 3*10^0 + 2*10^1 + 1*10^2
37+
* var v = evalpoly( [ 3.0, 2.0, 1.0 ], 10.0 ); // 3*10^0 + 2*10^1 + 1*10^2
3838
* // returns 123.0
3939
*/
4040
function evalpoly( c, x ) {

0 commit comments

Comments
 (0)