Skip to content

Commit b75aa79

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent d75defc commit b75aa79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/lcmf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ var lcmf = require( '@stdlib/math/base/special/lcmf' );
106106

107107
var a = randu( 100, 0, 50 );
108108
var b = randu( 100, 0, 50 );
109-
var i;
110109

110+
var i;
111111
for ( i = 0; i < 100; i++ ) {
112112
console.log( 'lcmf(%d,%d) = %d', a[ i ], b[ i ], lcmf( a[ i ], b[ i ] ) );
113113
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ var lcmf = require( './../lib' );
2323

2424
var a = randu( 100, 0, 50 );
2525
var b = randu( 100, 0, 50 );
26-
var i;
2726

27+
var i;
2828
for ( i = 0; i < 100; i++ ) {
2929
console.log( 'lcmf(%d,%d) = %d', a[ i ], b[ i ], lcmf( a[ i ], b[ i ] ) );
3030
}

0 commit comments

Comments
 (0)