Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 25, 2024
1 parent 40c33d8 commit 2119809
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ limitations under the License.

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

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

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

#### isComplex( value )

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

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

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

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

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

<!-- <related-links> -->

Expand Down
4 changes: 2 additions & 2 deletions docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

Examples
--------
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32}}( 2.0, 2.0 ) )
> var bool = {{alias}}( new {{alias:@stdlib/complex/float32/ctor}}( 2.0, 2.0 ) )
true
> bool = {{alias}}( new {{alias:@stdlib/complex/float64}}( 3.0, 1.0 ) )
> bool = {{alias}}( new {{alias:@stdlib/complex/float64/ctor}}( 3.0, 1.0 ) )
true
> bool = {{alias}}( 3.14 )
false
Expand Down

0 comments on commit 2119809

Please sign in to comment.