Skip to content

Commit 7b82cfe

Browse files
committed
Auto-generated commit
1 parent 5b5820f commit 7b82cfe

3 files changed

Lines changed: 18 additions & 6 deletions

File tree

README.md

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

229-
console.log( 'imag: %d', z.im );
230-
// => 'imag: -2'
229+
console.log( 'imaginary: %d', z.im );
230+
// => 'imaginary: -2'
231231

232232
console.log( 'JSON: %s', JSON.stringify( z ) );
233233
// => 'JSON: {"type":"Complex128","re":3,"im":-2}'
@@ -610,7 +610,7 @@ int main( void ) {
610610
## See Also
611611

612612
- <span class="package-name">[`@stdlib/complex-cmplx`][@stdlib/complex/cmplx]</span><span class="delimiter">: </span><span class="description">create a complex number.</span>
613-
- <span class="package-name">[`@stdlib/complex-float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
613+
- <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>
614614

615615
</section>
616616

@@ -700,7 +700,7 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
700700

701701
[@stdlib/complex/cmplx]: https://github.com/stdlib-js/complex-cmplx
702702

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

705705
<!-- </related-links> -->
706706

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":"Complex128","re":3,"im":-2}'

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,21 @@
4949
},
5050
"devDependencies": {
5151
"@stdlib/assert-has-own-property": "^0.2.1",
52+
"@stdlib/assert-is-boolean": "^0.2.1",
53+
"@stdlib/assert-is-complex128": "^0.2.1",
54+
"@stdlib/assert-is-same-complex128": "^0.2.1",
55+
"@stdlib/assert-is-string": "^0.2.1",
5256
"@stdlib/complex-float64-ctor": "github:stdlib-js/complex-float64-ctor#main",
57+
"@stdlib/complex-imag": "^0.2.1",
58+
"@stdlib/complex-real": "^0.2.1",
59+
"@stdlib/complex-reim": "^0.2.1",
60+
"@stdlib/constants-float64-ninf": "^0.2.1",
61+
"@stdlib/constants-float64-pinf": "^0.2.1",
5362
"@stdlib/math-base-assert-is-nan": "^0.2.1",
63+
"@stdlib/number-float64-base-assert-is-same-value": "^0.2.1",
64+
"@stdlib/number-float64-base-assert-is-same-value-zero": "^0.1.1",
5465
"@stdlib/random-base-randu": "^0.2.1",
66+
"@stdlib/string-base-replace": "^0.2.1",
5567
"@stdlib/utils-copy": "^0.2.1",
5668
"@stdlib/utils-parse-json": "^0.2.1",
5769
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",

0 commit comments

Comments
 (0)