Skip to content

Commit b2ac6cf

Browse files
authored
Update index.js
Signed-off-by: Gunj Joshi <[email protected]>
1 parent 78a7b34 commit b2ac6cf

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/fmod/examples

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ var i;
2929
for ( i = 0; i < 100; i++ ) {
3030
x = round( randu() * 10.0 );
3131
y = round( randu() * 10.0 ) - 5.0;
32-
console.log( '%d^%d = %d', x, y, fmod( x, y ) );
32+
console.log( '%d%%%d = %d', x, y, fmod( x, y ) );
3333
}

0 commit comments

Comments
 (0)