Skip to content

Commit

Permalink
docs: update paths
Browse files Browse the repository at this point in the history
Ref: #2260
  • Loading branch information
kgryte committed May 25, 2024
1 parent db69d04 commit 32fd387
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/base/assert/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The namespace contains the following functions:
- <span class="signature">[`isSameValueZero( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zero]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are the same value.</span>
- <span class="signature">[`isSameValueZerof( z1, z2 )`][@stdlib/complex/base/assert/is-same-value-zerof]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are the same value.</span>
- <span class="signature">[`isSameValue( z1, z2 )`][@stdlib/complex/base/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test whether two double-precision complex floating-point numbers are the same value.</span>
- <span class="signature">[`isSameValuef( z1, z2 )`][@stdlib/complex/base/assert/is-same-valuef]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are the same value.</span>
- <span class="signature">[`isSameValuef( z1, z2 )`][@stdlib/complex/float32/base/assert/is-same-value]</span><span class="delimiter">: </span><span class="description">test whether two single-precision complex floating-point numbers are the same value.</span>

</div>

Expand Down Expand Up @@ -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

<!-- </toc-links> -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 32fd387

Please sign in to comment.