Skip to content

Commit 8089b88

Browse files
committed
docs: update paths
1 parent 038b199 commit 8089b88

File tree

25 files changed

+92
-92
lines changed

25 files changed

+92
-92
lines changed

lib/node_modules/@stdlib/array/complex128/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2601,7 +2601,7 @@ logEach( '%s', out );
26012601

26022602
- <span class="package-name">[`@stdlib/array/complex64`][@stdlib/array/complex64]</span><span class="delimiter">: </span><span class="description">Complex64Array.</span>
26032603
- <span class="package-name">[`@stdlib/complex/cmplx`][@stdlib/complex/cmplx]</span><span class="delimiter">: </span><span class="description">create a complex number.</span>
2604-
- <span class="package-name">[`@stdlib/complex/float64`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
2604+
- <span class="package-name">[`@stdlib/complex/float64/ctor`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
26052605

26062606
</section>
26072607

@@ -2617,7 +2617,7 @@ logEach( '%s', out );
26172617

26182618
[@stdlib/array/buffer]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/buffer
26192619

2620-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
2620+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
26212621

26222622
<!-- <related-links> -->
26232623

lib/node_modules/@stdlib/array/complex64/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2608,7 +2608,7 @@ logEach( '%s', out );
26082608

26092609
- <span class="package-name">[`@stdlib/array/complex128`][@stdlib/array/complex128]</span><span class="delimiter">: </span><span class="description">Complex128Array.</span>
26102610
- <span class="package-name">[`@stdlib/complex/cmplx`][@stdlib/complex/cmplx]</span><span class="delimiter">: </span><span class="description">create a complex number.</span>
2611-
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
2611+
- <span class="package-name">[`@stdlib/complex/float32/ctor`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
26122612

26132613
</section>
26142614

@@ -2624,7 +2624,7 @@ logEach( '%s', out );
26242624

26252625
[@stdlib/array/buffer]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/buffer
26262626

2627-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
2627+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
26282628

26292629
<!-- <related-links> -->
26302630

lib/node_modules/@stdlib/assert/is-complex/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isComplex
2222

23-
> Test if a value is a [64-bit][@stdlib/complex/float32] or [128-bit][@stdlib/complex/float64] complex number.
23+
> Test if a value is a [64-bit][@stdlib/complex/float32/ctor] or [128-bit][@stdlib/complex/float64/ctor] complex number.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isComplex = require( '@stdlib/assert/is-complex' );
3232

3333
#### isComplex( value )
3434

35-
Tests if a value is a [64-bit][@stdlib/complex/float32] or [128-bit][@stdlib/complex/float64] complex number.
35+
Tests if a value is a [64-bit][@stdlib/complex/float32/ctor] or [128-bit][@stdlib/complex/float64/ctor] complex number.
3636

3737
```javascript
3838
var Complex128 = require( '@stdlib/complex/float64/ctor' );
@@ -98,9 +98,9 @@ out = isComplex( null );
9898

9999
<section class="links">
100100

101-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
101+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
102102

103-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
103+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
104104

105105
<!-- <related-links> -->
106106

lib/node_modules/@stdlib/assert/is-complex128/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isComplex128
2222

23-
> Test if a value is a [128-bit complex number][@stdlib/complex/float64].
23+
> Test if a value is a [128-bit complex number][@stdlib/complex/float64/ctor].
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isComplex128 = require( '@stdlib/assert/is-complex128' );
3232

3333
#### isComplex128( value )
3434

35-
Tests if a value is a [128-bit complex number][@stdlib/complex/float64].
35+
Tests if a value is a [128-bit complex number][@stdlib/complex/float64/ctor].
3636

3737
```javascript
3838
var Complex128 = require( '@stdlib/complex/float64/ctor' );
@@ -94,7 +94,7 @@ out = isComplex128( null );
9494

9595
<section class="links">
9696

97-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
97+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
9898

9999
<!-- <related-links> -->
100100

lib/node_modules/@stdlib/assert/is-complex64/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isComplex64
2222

23-
> Test if a value is a [64-bit complex number][@stdlib/complex/float32].
23+
> Test if a value is a [64-bit complex number][@stdlib/complex/float32/ctor].
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isComplex64 = require( '@stdlib/assert/is-complex64' );
3232

3333
#### isComplex64( value )
3434

35-
Tests if a value is a [64-bit complex number][@stdlib/complex/float32].
35+
Tests if a value is a [64-bit complex number][@stdlib/complex/float32/ctor].
3636

3737
```javascript
3838
var Complex64 = require( '@stdlib/complex/float32/ctor' );
@@ -94,7 +94,7 @@ out = isComplex64( null );
9494

9595
<section class="links">
9696

97-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
97+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
9898

9999
<!-- <related-links> -->
100100

lib/node_modules/@stdlib/assert/is-same-complex128/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isSameComplex128
2222

23-
> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
23+
> Test if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isSameComplex128 = require( '@stdlib/assert/is-same-complex128' );
3232

3333
#### isSameComplex128( v1, v2 )
3434

35-
Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64] and have the [same value][@stdlib/assert/is-same-value].
35+
Tests if two arguments are both [double-precision complex floating-point numbers][@stdlib/complex/float64/ctor] and have the [same value][@stdlib/assert/is-same-value].
3636

3737
```javascript
3838
var Complex128 = require( '@stdlib/complex/float64/ctor' );
@@ -107,7 +107,7 @@ out = isSameComplex128( x, y );
107107

108108
<section class="links">
109109

110-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
110+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
111111

112112
[@stdlib/assert/is-same-value]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/is-same-value
113113

lib/node_modules/@stdlib/assert/is-same-complex64/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# isSameComplex64
2222

23-
> Test if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32] and have the [same value][@stdlib/assert/is-same-value].
23+
> Test if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32/ctor] and have the [same value][@stdlib/assert/is-same-value].
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var isSameComplex64 = require( '@stdlib/assert/is-same-complex64' );
3232

3333
#### isSameComplex64( v1, v2 )
3434

35-
Tests if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32] and have the [same value][@stdlib/assert/is-same-value].
35+
Tests if two arguments are both [single-precision complex floating-point numbers][@stdlib/complex/float32/ctor] and have the [same value][@stdlib/assert/is-same-value].
3636

3737
```javascript
3838
var Complex64 = require( '@stdlib/complex/float32/ctor' );
@@ -107,7 +107,7 @@ out = isSameComplex64( x, y );
107107

108108
<section class="links">
109109

110-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
110+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
111111

112112
[@stdlib/assert/is-same-value]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/is-same-value
113113

lib/node_modules/@stdlib/complex/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ The namespace constains complex number constructors.
5050
- <span class="signature">[`complexCtors( dtype )`][@stdlib/complex/ctors]</span><span class="delimiter">: </span><span class="description">complex number constructors.</span>
5151
- <span class="signature">[`complexDataType( value )`][@stdlib/complex/dtype]</span><span class="delimiter">: </span><span class="description">return the data type of a complex number.</span>
5252
- <span class="signature">[`complexDataTypes()`][@stdlib/complex/dtypes]</span><span class="delimiter">: </span><span class="description">list of complex number data types.</span>
53-
- <span class="signature">[`Complex64( real, imag )`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
54-
- <span class="signature">[`Complex128( real, imag )`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
53+
- <span class="signature">[`Complex64( real, imag )`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
54+
- <span class="signature">[`Complex128( real, imag )`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
5555
- <span class="signature">[`complexPromotionRules( [dtype1, dtype2] )`][@stdlib/complex/promotion-rules]</span><span class="delimiter">: </span><span class="description">return the complex number data type with the smallest size and closest "kind" to which data types can be **safely** cast.</span>
5656

5757
</div>
@@ -173,9 +173,9 @@ console.log( objectKeys( ns ) );
173173

174174
[@stdlib/complex/dtypes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/dtypes
175175

176-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
176+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
177177

178-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
178+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
179179

180180
[@stdlib/complex/promotion-rules]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/promotion-rules
181181

lib/node_modules/@stdlib/complex/base/parse/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ z = parse( {} );
118118

119119
## See Also
120120

121-
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
121+
- <span class="package-name">[`@stdlib/complex/float32/ctor`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
122122

123123
</section>
124124

@@ -128,7 +128,7 @@ z = parse( {} );
128128

129129
<section class="links">
130130

131-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
131+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
132132

133133
<!-- </related-links> -->
134134

lib/node_modules/@stdlib/complex/cmplx/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ var z = complex( 5.0, 3.0 );
4949
// returns <Complex128>
5050
```
5151

52-
By default, the function returns a [128-bit complex number][@stdlib/complex/float64]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
52+
By default, the function returns a [128-bit complex number][@stdlib/complex/float64/ctor]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
5353

54-
- [`'float64'`][@stdlib/complex/float64]: store **real** and **imaginary** components as double-precision floating-point numbers.
55-
- [`'float32'`][@stdlib/complex/float32]: store **real** and **imaginary** components as single-precision floating-point numbers.
54+
- [`'float64'`][@stdlib/complex/float64/ctor]: store **real** and **imaginary** components as double-precision floating-point numbers.
55+
- [`'float32'`][@stdlib/complex/float32/ctor]: store **real** and **imaginary** components as single-precision floating-point numbers.
5656

5757
```javascript
5858
var z = complex( 5.0, 3.0, 'float32' );
@@ -113,8 +113,8 @@ for ( i = 0; i < 100; i++ ) {
113113

114114
## See Also
115115

116-
- <span class="package-name">[`@stdlib/complex/float64`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
117-
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
116+
- <span class="package-name">[`@stdlib/complex/float64/ctor`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
117+
- <span class="package-name">[`@stdlib/complex/float32/ctor`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
118118

119119
</section>
120120

@@ -126,9 +126,9 @@ for ( i = 0; i < 100; i++ ) {
126126

127127
<!-- <related-links> -->
128128

129-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
129+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
130130

131-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
131+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
132132

133133
<!-- </related-links> -->
134134

lib/node_modules/@stdlib/complex/float32/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ console.log( 'str: %s', z );
193193
console.log( 'real: %d', z.re );
194194
// => 'real: 3'
195195

196-
console.log( 'imag: %d', z.im );
197-
// => 'imag: -2'
196+
console.log( 'imaginary: %d', z.im );
197+
// => 'imaginary: -2'
198198

199199
console.log( 'JSON: %s', JSON.stringify( z ) );
200200
// => 'JSON: {"type":"Complex64","re":3,"im":-2}'
@@ -507,7 +507,7 @@ int main( void ) {
507507
## See Also
508508

509509
- <span class="package-name">[`@stdlib/complex/cmplx`][@stdlib/complex/cmplx]</span><span class="delimiter">: </span><span class="description">create a complex number.</span>
510-
- <span class="package-name">[`@stdlib/complex/float64`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
510+
- <span class="package-name">[`@stdlib/complex/float64/ctor`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
511511

512512
</section>
513513

@@ -529,7 +529,7 @@ int main( void ) {
529529

530530
[@stdlib/complex/cmplx]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/cmplx
531531

532-
[@stdlib/complex/float64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
532+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64
533533

534534
<!-- </related-links> -->
535535

lib/node_modules/@stdlib/complex/float32/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ console.log( 'str: %s', z );
3131
console.log( 'real: %d', z.re );
3232
// => 'real: 3'
3333

34-
console.log( 'imag: %d', z.im );
35-
// => 'imag: -2'
34+
console.log( 'imaginary: %d', z.im );
35+
// => 'imaginary: -2'
3636

3737
console.log( 'JSON: %s', JSON.stringify( z ) );
3838
// => 'JSON: {"type":"Complex64","re":3,"im":-2}'

lib/node_modules/@stdlib/complex/float32/parse/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# parseComplex64
2222

23-
> Parse a string representation of a 64-bit [complex number][@stdlib/complex/float32].
23+
> Parse a string representation of a 64-bit [complex number][@stdlib/complex/float32/ctor].
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var parseComplex64 = require( '@stdlib/complex/float32/parse' );
4242

4343
#### parseComplex64( str )
4444

45-
Parse a string representation of a 64-bit [complex number][@stdlib/complex/float32].
45+
Parse a string representation of a 64-bit [complex number][@stdlib/complex/float32/ctor].
4646

4747
```javascript
4848
var parseComplex64 = require( '@stdlib/complex/float32/parse' );
@@ -61,7 +61,7 @@ var im = imag( z );
6161
// returns 3.0
6262
```
6363

64-
For details on the string format, see [Complex64][@stdlib/complex/float32].
64+
For details on the string format, see [Complex64][@stdlib/complex/float32/ctor].
6565

6666
</section>
6767

@@ -126,7 +126,7 @@ bool = ( imag( z ) === -2.75 );
126126

127127
<section class="links">
128128

129-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
129+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
130130

131131
</section>
132132

lib/node_modules/@stdlib/complex/float32/reviver/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# reviveComplex64
2222

23-
> Revive a JSON-serialized 64-bit [complex number][@stdlib/complex/float32].
23+
> Revive a JSON-serialized 64-bit [complex number][@stdlib/complex/float32/ctor].
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var reviveComplex64 = require( '@stdlib/complex/float32/reviver' );
4242

4343
#### reviveComplex64( key, value )
4444

45-
Revives a JSON-serialized 64-bit [complex number][@stdlib/complex/float32].
45+
Revives a JSON-serialized 64-bit [complex number][@stdlib/complex/float32/ctor].
4646

4747
```javascript
4848
var parseJSON = require( '@stdlib/utils/parse-json' );
@@ -53,7 +53,7 @@ var z = parseJSON( str, reviveComplex64 );
5353
// returns <Complex64>
5454
```
5555

56-
For details on the JSON serialization format, see [`Complex64`][@stdlib/complex/float32].
56+
For details on the JSON serialization format, see [`Complex64`][@stdlib/complex/float32/ctor].
5757

5858
</section>
5959

@@ -118,7 +118,7 @@ bool = ( w.im === z.im );
118118

119119
## See Also
120120

121-
- <span class="package-name">[`@stdlib/complex/float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
121+
- <span class="package-name">[`@stdlib/complex/float32/ctor`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
122122
- <span class="package-name">[`@stdlib/complex/float64/reviver`][@stdlib/complex/float64/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized 128-bit complex number.</span>
123123
- <span class="package-name">[`@stdlib/complex/reviver`][@stdlib/complex/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized complex number.</span>
124124

@@ -130,7 +130,7 @@ bool = ( w.im === z.im );
130130

131131
<section class="links">
132132

133-
[@stdlib/complex/float32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
133+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32
134134

135135
<!-- <related-links> -->
136136

0 commit comments

Comments
 (0)