Skip to content

Commit 2ad95ad

Browse files
committed
Auto-generated commit
1 parent 41a2139 commit 2ad95ad

12 files changed

Lines changed: 30 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-05)
7+
## Unreleased (2025-09-06)
88

99
<section class="features">
1010

@@ -633,6 +633,8 @@ A total of 63 issues were closed in this release:
633633

634634
<details>
635635

636+
- [`3e6159b`](https://github.com/stdlib-js/stdlib/commit/3e6159bbb50ef50bf9ef464e99a207fa3878995d) - **docs:** resolve doctest errors in TSDoc _(by Philipp Burckhardt)_
637+
- [`2cf7f78`](https://github.com/stdlib-js/stdlib/commit/2cf7f78c164b51a905e7df83c99e0404ac55fe39) - **docs:** correct function names, return values, and method calls in TypeScript declaration examples _(by Philipp Burckhardt)_
636638
- [`4fadd45`](https://github.com/stdlib-js/stdlib/commit/4fadd45bb3ff63b9c30e9b7a6b950554f555dbec) - **chore:** add structured package data for `math/base/special/factorial` [(#8017)](https://github.com/stdlib-js/stdlib/pull/8017) _(by Lokesh Ranjan)_
637639
- [`73ca98e`](https://github.com/stdlib-js/stdlib/commit/73ca98e9cdb6ebd848df6f2321f740237e85b3cd) - **chore:** fix C lint errors [(#8015)](https://github.com/stdlib-js/stdlib/pull/8015) _(by GeoDaoyu)_
638640
- [`baf65a6`](https://github.com/stdlib-js/stdlib/commit/baf65a6e432f27fd2876946a96d4801bb469c3ad) - **chore:** add structured package data for `math/base/special/fibonacci` [(#8012)](https://github.com/stdlib-js/stdlib/pull/8012) _(by Lokesh Ranjan, Athan Reines)_

base/special/acosd/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var v = acosd( 0.0 );
29-
* // returns 0.0
29+
* // returns 90.0
3030
*
3131
* @example
3232
* var v = acosd( 0.5 );

base/special/acosdf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var v = acosdf( 0.0 );
29-
* // returns 0.0
29+
* // returns 90.0
3030
*
3131
* @example
3232
* var v = acosdf( 0.5 );

base/special/acsch/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var v = acsch( 0 );
29-
* // returns NaN
29+
* // returns Infinity
3030
*
3131
* @example
3232
* var v = acsch( -1.0 );

base/special/asind/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
* @example
3636
* var sqrt = require( '@stdlib/math/base/special/sqrt' );
3737
*
38-
* var v = asindf( sqrt( 2.0 ) / 2.0 );
38+
* var v = asind( sqrt( 2.0 ) / 2.0 );
3939
* // returns ~45.0
4040
*
4141
* @example
4242
* var sqrt = require( '@stdlib/math/base/special/sqrt' );
4343
*
44-
* var v = asindf( sqrt( 3.0 ) / 2.0 );
44+
* var v = asind( sqrt( 3.0 ) / 2.0 );
4545
* // returns ~60.0
4646
*
4747
* @example

base/special/ccis/docs/types/index.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ import { Complex128 } from '@stdlib/types/complex';
4444
*
4545
* var im = imag( out );
4646
* // returns 0.0
47+
*
4748
* @example
4849
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
4950
* var real = require( '@stdlib/complex/float64/real' );
@@ -61,9 +62,9 @@ import { Complex128 } from '@stdlib/types/complex';
6162
* var im = imag( out );
6263
* // returns ~0.841
6364
*/
64-
declare function cis( z: Complex128 ): Complex128;
65+
declare function ccis( z: Complex128 ): Complex128;
6566

6667

6768
// EXPORTS //
6869

69-
export = cis;
70+
export = ccis;

base/special/cfloorn/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { Complex128 } from '@stdlib/types/complex';
3434
* var real = require( '@stdlib/complex/float64/real' );
3535
* var imag = require( '@stdlib/complex/float64/imag' );
3636
*
37-
* var v = cfloor( new Complex128( 5.555, -3.333 ), -2 );
37+
* var v = cfloorn( new Complex128( 5.555, -3.333 ), -2 );
3838
* // returns <Complex128>
3939
*
4040
* var re = real( v );

base/special/cround/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { Complex128 } from '@stdlib/types/complex';
3333
* var real = require( '@stdlib/complex/float64/real' );
3434
* var imag = require( '@stdlib/complex/float64/imag' );
3535
*
36-
* var v = cceil( new Complex128( -4.2, 5.5 ) );
36+
* var v = cround( new Complex128( -4.2, 5.5 ) );
3737
* // returns <Complex128>
3838
*
3939
* var re = real( v );

base/special/croundn/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ import { Complex128 } from '@stdlib/types/complex';
3838
* var real = require( '@stdlib/complex/float64/real' );
3939
* var imag = require( '@stdlib/complex/float64/imag' );
4040
*
41-
* var v = cceil( new Complex128( 5.555, -3.333 ) );
41+
* var v = croundn( new Complex128( 5.555, -3.333 ), -2 );
4242
* // returns <Complex128>
4343
*
4444
* var re = real( v );
4545
* // returns 5.56
4646
*
4747
* var im = imag( v );
48-
* // returns -3.34
48+
* // returns -3.33
4949
*/
5050
declare function croundn( z: Complex128, n: number ): Complex128;
5151

base/special/fast/alpha-max-plus-beta-min/docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface Hypot {
3939
* @returns hypotenuse
4040
*
4141
* @example
42-
* var h = ampbm( -5.0, 12.0 );
42+
* var h = hypot( -5.0, 12.0 );
4343
* // returns ~13.5
4444
*/
4545
( x: number, y: number ): number;
@@ -54,10 +54,10 @@ interface Hypot {
5454
* @returns function to compute a hypotenuse
5555
*
5656
* @example
57-
* var hypot = ampbm.factory( 1.0, 0.5 );
57+
* var fcn = hypot.factory( 1.0, 0.5 );
5858
* // returns <Function>
5959
*
60-
* var h = hypot( -5.0, 12.0 );
60+
* var h = fcn( -5.0, 12.0 );
6161
* // returns 14.5
6262
*/
6363
factory( alpha: number, beta: number, nonnegative?: boolean, ints?: boolean ): HypotFunction;
@@ -71,14 +71,14 @@ interface Hypot {
7171
* @returns hypotenuse
7272
*
7373
* @example
74-
* var h = ampbm( -5.0, 12.0 );
74+
* var h = hypot( -5.0, 12.0 );
7575
* // returns ~13.5
7676
*
7777
* @example
78-
* var hypot = ampbm.factory( 1.0, 0.5 );
78+
* var fcn = hypot.factory( 1.0, 0.5 );
7979
* // returns <Function>
8080
*
81-
* var h = hypot( -5.0, 12.0 );
81+
* var h = fcn( -5.0, 12.0 );
8282
* // returns 14.5
8383
*/
8484
declare var hypot: Hypot;

0 commit comments

Comments
 (0)