Skip to content

Commit 8ec689a

Browse files
authored
style: add space
Signed-off-by: Athan <kgryte@gmail.com>
1 parent d5b5dd0 commit 8ec689a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/number/float16/base/ulp-difference/lib

lib/node_modules/@stdlib/number/float16/base/ulp-difference/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
3838
*/
3939
function monotoneKey( word ) {
4040
if ( word & SIGN_MASK ) { // x < 0
41-
return ( ( ~word + 1 ) &UINT16_MAX ); // two's-complement negation
41+
return ( ( ~word + 1 ) & UINT16_MAX ); // two's-complement negation
4242
}
4343
// x >= 0
4444
return ( word | SIGN_MASK ) >>> 0; // push +0 to just above -0

0 commit comments

Comments
 (0)