diff --git a/CHANGELOG.md b/CHANGELOG.md index ee007b77..706a777d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -239,6 +239,7 @@ A total of 5 people contributed to this release. Thank you to the following cont
+- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_ - [`ff9fa81`](https://github.com/stdlib-js/stdlib/commit/ff9fa81f917d539f1a11fba5580e1744991a8a11) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_ - [`f477e26`](https://github.com/stdlib-js/stdlib/commit/f477e26a03e5e365f2e7c4035959a2fb789698a3) - **chore:** move functions to parent scope _(by Philipp Burckhardt)_ - [`8f72b43`](https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_ diff --git a/is-complex-like/docs/types/test.ts b/is-complex-like/docs/types/test.ts index ad67d8e0..dc2af1d3 100644 --- a/is-complex-like/docs/types/test.ts +++ b/is-complex-like/docs/types/test.ts @@ -16,9 +16,9 @@ * limitations under the License. */ -import isComplexLike = require( './index' ); import Complex128 = require( '@stdlib/complex/float64/ctor' ); import Complex64 = require( '@stdlib/complex/float32/ctor' ); +import isComplexLike = require( './index' ); // TESTS // diff --git a/is-complex/docs/types/test.ts b/is-complex/docs/types/test.ts index 48cde681..461bac6d 100644 --- a/is-complex/docs/types/test.ts +++ b/is-complex/docs/types/test.ts @@ -16,9 +16,9 @@ * limitations under the License. */ -import isComplex = require( './index' ); import Complex128 = require( '@stdlib/complex/float64/ctor' ); import Complex64 = require( '@stdlib/complex/float32/ctor' ); +import isComplex = require( './index' ); // TESTS // diff --git a/is-prng-like/docs/types/test.ts b/is-prng-like/docs/types/test.ts index e2322f8d..614f7edc 100644 --- a/is-prng-like/docs/types/test.ts +++ b/is-prng-like/docs/types/test.ts @@ -16,8 +16,8 @@ * limitations under the License. */ -import isPRNGLike = require( './index' ); import randu = require( '@stdlib/random/base/randu' ); +import isPRNGLike = require( './index' ); // TESTS //