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 ef92efd commit 448933a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ var o = z.toJSON();
*/
```

To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/reviver-float64][@stdlib/complex/reviver-float64].
To [revive][mdn-json-parse] a `Complex128` number from a [JSON][json] `string`, see [@stdlib/complex/float64/reviver][@stdlib/complex/float64/reviver].

</section>

Expand Down Expand Up @@ -694,7 +694,7 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].

[mdn-json-parse]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse

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

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

Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ stdlib_complex128_t stdlib_complex128_from_float64( const double real ) {
* @return double-precision complex floating-point number
*
* @example
* #include "stdlib/complex/float32.h"
* #include "stdlib/complex/float32/ctor.h"
*
* stdlib_complex64_t z1 = stdlib_complex64( 5.0f, 3.0f );
* stdlib_complex128_t z2 = stdlib_complex128_from_complex64( z1 );
Expand Down Expand Up @@ -210,7 +210,7 @@ stdlib_complex128_t stdlib_complex128_from_uint32( const uint32_t real ) {
* @return single-precision complex floating-point number
*
* @example
* #include "stdlib/complex/float32.h"
* #include "stdlib/complex/float32/ctor.h"
*
* stdlib_complex128_t z1 = stdlib_complex128( 5.0, 3.0 );
* stdlib_complex64_t z2 = stdlib_complex128_to_complex64( z1 );
Expand Down

0 comments on commit 448933a

Please sign in to comment.