diff --git a/lib/node_modules/@stdlib/math/base/special/pow/lib/y_is_infinite.js b/lib/node_modules/@stdlib/math/base/special/pow/lib/y_is_infinite.js index 4b78db64c76b..fd80267c6188 100644 --- a/lib/node_modules/@stdlib/math/base/special/pow/lib/y_is_infinite.js +++ b/lib/node_modules/@stdlib/math/base/special/pow/lib/y_is_infinite.js @@ -68,7 +68,7 @@ var PINF = require( '@stdlib/constants/float64/pinf' ); */ function pow( x, y ) { if ( x === -1.0 ) { - // Julia (0.4.2) and Python (2.7.9) return `1.0` (WTF???). JavaScript (`Math.pow`), R, and libm return `NaN`. We choose `NaN`, as the value is indeterminate; i.e., we cannot determine whether `y` is odd, even, or somewhere in between. + // Julia (0.4.2) and Python (2.7.9) return `1.0` (WTF???). JavaScript (`Math.pow`), R, and LIBM return `NaN`. We choose `NaN`, as the value is indeterminate; i.e., we cannot determine whether `y` is odd, even, or somewhere in between. return (x-x)/(x-x); // signal NaN } if ( x === 1.0 ) {