Skip to content

Commit 2119809

Browse files
committed
Auto-generated commit
1 parent 40c33d8 commit 2119809

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

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

3434
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
3535

36-
> Test if a value is a [64-bit][@stdlib/complex/float32] or [128-bit][@stdlib/complex/float64] complex number.
36+
> Test if a value is a [64-bit][@stdlib/complex/float32/ctor] or [128-bit][@stdlib/complex/float64/ctor] complex number.
3737
3838
<section class="installation">
3939

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

6666
#### isComplex( value )
6767

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

7070
```javascript
7171
var Complex128 = require( '@stdlib/complex-float64-ctor' );
@@ -199,9 +199,9 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
199199

200200
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-complex/main/LICENSE
201201

202-
[@stdlib/complex/float64]: https://github.com/stdlib-js/complex-float64
202+
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/complex-float64
203203

204-
[@stdlib/complex/float32]: https://github.com/stdlib-js/complex-float32
204+
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/complex-float32
205205

206206
<!-- <related-links> -->
207207

docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
Examples
1717
--------
18-
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
18+
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
1919
true
20-
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
20+
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
2121
true
2222
> bool = {{alias}}( 3.14 )
2323
false

0 commit comments

Comments
 (0)