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 241fa8b commit 5d7ec3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 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 [128-bit complex number][@stdlib/complex/float64].
> Test if a value is a [128-bit complex number][@stdlib/complex/float64/ctor].
<section class="installation">

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

#### isComplex128( value )

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

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

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

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

<!-- <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 @@ -14,9 +14,9 @@

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

0 comments on commit 5d7ec3c

Please sign in to comment.