From 32fd3872225d598d3c29eeb1c837641a85d21364 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Sat, 25 May 2024 13:03:28 -0700 Subject: [PATCH] docs: update paths Ref: https://github.com/stdlib-js/stdlib/issues/2260 --- lib/node_modules/@stdlib/complex/base/assert/README.md | 4 ++-- .../@stdlib/complex/base/assert/docs/types/index.d.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/complex/base/assert/README.md b/lib/node_modules/@stdlib/complex/base/assert/README.md index ab0d336e532..e7c708f222e 100644 --- a/lib/node_modules/@stdlib/complex/base/assert/README.md +++ b/lib/node_modules/@stdlib/complex/base/assert/README.md @@ -52,7 +52,7 @@ The namespace contains the following functions: - [`isSameValueZero( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zero]: test whether two double-precision complex floating-point numbers are the same value. - [`isSameValueZerof( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zerof]: test whether two single-precision complex floating-point numbers are the same value. - [`isSameValue( z1, z2 )`][@stdlib/complex/base/assert/is-same-value]: test whether two double-precision complex floating-point numbers are the same value. -- [`isSameValuef( z1, z2 )`][@stdlib/complex/base/assert/is-same-valuef]: test whether two single-precision complex floating-point numbers are the same value. +- [`isSameValuef( z1, z2 )`][@stdlib/complex/float32/base/assert/is-same-value]: test whether two single-precision complex floating-point numbers are the same value. @@ -117,7 +117,7 @@ console.log( objectKeys( ns ) ); [@stdlib/complex/base/assert/is-same-value]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/base/assert/is-same-value -[@stdlib/complex/base/assert/is-same-valuef]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/base/assert/is-same-valuef +[@stdlib/complex/float32/base/assert/is-same-value]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/assert/is-same-value diff --git a/lib/node_modules/@stdlib/complex/base/assert/docs/types/index.d.ts b/lib/node_modules/@stdlib/complex/base/assert/docs/types/index.d.ts index 3b9afd6a089..918fc993121 100644 --- a/lib/node_modules/@stdlib/complex/base/assert/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/complex/base/assert/docs/types/index.d.ts @@ -27,7 +27,7 @@ import isNotEqualf = require( '@stdlib/complex/base/assert/is-not-equalf' ); import isSameValue = require( '@stdlib/complex/base/assert/is-same-value' ); import isSameValueZero = require( '@stdlib/complex/base/assert/is-same-value-zero' ); import isSameValueZerof = require( '@stdlib/complex/base/assert/is-same-value-zerof' ); -import isSameValuef = require( '@stdlib/complex/base/assert/is-same-valuef' ); +import isSameValuef = require( '@stdlib/complex/float32/base/assert/is-same-value' ); /** * Interface describing the `assert` namespace.