diff --git a/complex128/nan/lib/index.js b/complex128/nan/lib/index.js index e87f1c9e..92fad508 100644 --- a/complex128/nan/lib/index.js +++ b/complex128/nan/lib/index.js @@ -31,7 +31,7 @@ // MODULES // -var Complex128 = require( '@stdlib/complex/float64' ); +var Complex128 = require( '@stdlib/complex/float64/ctor' ); // MAIN // diff --git a/complex128/zero/lib/index.js b/complex128/zero/lib/index.js index a4d90f7f..1b5c1355 100644 --- a/complex128/zero/lib/index.js +++ b/complex128/zero/lib/index.js @@ -31,7 +31,7 @@ // MODULES // -var Complex128 = require( '@stdlib/complex/float64' ); +var Complex128 = require( '@stdlib/complex/float64/ctor' ); // MAIN // diff --git a/complex64/nan/lib/index.js b/complex64/nan/lib/index.js index 326a355c..9495c6e6 100644 --- a/complex64/nan/lib/index.js +++ b/complex64/nan/lib/index.js @@ -31,7 +31,7 @@ // MODULES // -var Complex64 = require( '@stdlib/complex/float32' ); +var Complex64 = require( '@stdlib/complex/float32/ctor' ); // MAIN // diff --git a/complex64/zero/lib/index.js b/complex64/zero/lib/index.js index c68fbc5f..c8428271 100644 --- a/complex64/zero/lib/index.js +++ b/complex64/zero/lib/index.js @@ -31,7 +31,7 @@ // MODULES // -var Complex64 = require( '@stdlib/complex/float32' ); +var Complex64 = require( '@stdlib/complex/float32/ctor' ); // MAIN // diff --git a/float64/max-base10-exponent-subnormal/README.md b/float64/max-base10-exponent-subnormal/README.md index 36569c2d..34f80d90 100644 --- a/float64/max-base10-exponent-subnormal/README.md +++ b/float64/max-base10-exponent-subnormal/README.md @@ -91,10 +91,10 @@ console.log( FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL ); ### Usage ```c -#include "stdlib/constants/float64/max_base10_exponent.h" +#include "stdlib/constants/float64/max_base10_exponent_subnormal.h" ``` -#### STDLIB_CONSTANT_FLOAT64_MAX_BASE10_EXPONENT +#### STDLIB_CONSTANT_FLOAT64_MAX_BASE10_EXPONENT_SUBNORMAL Macro for the maximum base 10 exponent for a subnormal [double-precision floating-point number][ieee754].