Skip to content

Commit bef0241

Browse files
refactored examples and readme
1 parent fe646a9 commit bef0241

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/expf/examples

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/expf/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ var uniform = require( '@stdlib/random/array/uniform' );
2222
var expf = require( './../lib' );
2323

2424
var opts = {
25-
'dtype': 'float32'
25+
'dtype': 'float32'
2626
};
2727

2828
var x = uniform( 100, -50.0, 50.0, opts );
2929
var i;
3030

3131
for ( i = 0; i < 100; i++ ) {
32-
console.log( 'e^%f = %f', x, expf( x[ i ] ) );
32+
console.log( 'e^%f = %f', x, expf( x[ i ] ) );
3333
}

0 commit comments

Comments
 (0)