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 Jul 18, 2024
1 parent de553c4 commit 490cff4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2669,6 +2669,7 @@ A total of 35 people contributed to this release. Thank you to the following con

<details>

- [`ba35d8f`](https://github.com/stdlib-js/stdlib/commit/ba35d8f2e923d26640828a0f035333bd778389b7) - **refactor:** update paths _(by Athan Reines)_
- [`e3a3679`](https://github.com/stdlib-js/stdlib/commit/e3a3679f1e733cf02ce47cdc4bd0137bd37bef41) - **refactor:** update paths _(by Athan Reines)_
- [`ddd4403`](https://github.com/stdlib-js/stdlib/commit/ddd44032f9d8a6d318c80e3b239ff72280ffc599) - **refactor:** update paths _(by Athan Reines)_
- [`0406147`](https://github.com/stdlib-js/stdlib/commit/04061476d1036e1b8b786736b1ba1653eddff1ef) - **refactor:** update paths _(by Athan Reines)_
Expand Down
2 changes: 1 addition & 1 deletion base/dcabs1/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { Complex128 } from '@stdlib/types/complex';
* @returns result
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var v = dcabs1( new Complex128( 5.0, -3.0 ) );
* // returns 8.0
Expand Down
2 changes: 1 addition & 1 deletion base/dcabs1/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @module @stdlib/blas/base/dcabs1
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
* var dcabs1 = require( '@stdlib/blas/base/dcabs1' );
*
* var v = dcabs1( new Complex128( 5.0, -3.0 ) );
Expand Down
2 changes: 1 addition & 1 deletion base/dcabs1/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var imag = require( '@stdlib/complex/float64/imag' );
* @returns {number} result
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var v = dcabs1( new Complex128( 5.0, -3.0 ) );
* // returns 8.0
Expand Down
2 changes: 1 addition & 1 deletion base/dcabs1/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var addon = require( './../src/addon.node' );
* @returns {number} result
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var v = dcabs1( new Complex128( 5.0, -3.0 ) );
* // returns 8.0
Expand Down
2 changes: 1 addition & 1 deletion base/dcabs1/test/test.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var resolve = require( 'path' ).resolve;
var tape = require( 'tape' );
var isnan = require( '@stdlib/math/base/assert/is-nan' );
var Float64Array = require( '@stdlib/array/float64' );
var Complex128 = require( '@stdlib/complex/float64' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var tryRequire = require( '@stdlib/utils/try-require' );


Expand Down
2 changes: 1 addition & 1 deletion base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ interface Namespace {
* @returns result
*
* @example
* var Complex128 = require( '@stdlib/complex/float64' );
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
*
* var v = ns.dcabs1( new Complex128( 5.0, -3.0 ) );
* // returns 8.0
Expand Down
2 changes: 1 addition & 1 deletion base/scabs1/src/scabs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @return result
*
* @example
* #include "stdlib/complex/float32.h"
* #include "stdlib/complex/float32/ctor.h"
*
* stdlib_complex64_t c = stdlib_complex64( 5.0f, -3.0f );
*
Expand Down

0 comments on commit 490cff4

Please sign in to comment.