Skip to content

Commit c655dd8

Browse files
committed
Auto-generated commit
1 parent 6a85670 commit c655dd8

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ A total of 73 issues were closed in this release:
708708

709709
<details>
710710

711+
- [`a297ebe`](https://github.com/stdlib-js/stdlib/commit/a297ebeb5aae3de8c04c56e02e5e0ef4f229b2f8) - **docs:** fix doctest return annotation comment _(by Philipp Burckhardt)_
711712
- [`1dcf101`](https://github.com/stdlib-js/stdlib/commit/1dcf1013f5f6b583f11aa4f33750a549114de858) - **docs:** update example code in namespace TSDoc declarations _(by Philipp Burckhardt)_
712713
- [`82e7f35`](https://github.com/stdlib-js/stdlib/commit/82e7f3517a61b3d4be4b37398da6119222416825) - **chore:** add structured package data for `math/base/special/log1pf` [(#8800)](https://github.com/stdlib-js/stdlib/pull/8800) _(by Aman Singh, Athan Reines)_
713714
- [`0d81289`](https://github.com/stdlib-js/stdlib/commit/0d812895bf69ea0843359084f62063c7a84d0eb8) - **feat:** update math scaffold databases [(#8798)](https://github.com/stdlib-js/stdlib/pull/8798) _(by stdlib-bot)_

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ interface Fresnel {
6969
* var out = new Float64Array( 2 );
7070
*
7171
* var v = fresnel.assign( 0.0, out, 1, 0 );
72-
* // return <Float64Array>[ ~0.0, ~0.0 ]
72+
* // returns <Float64Array>[ ~0.0, ~0.0 ]
7373
*
7474
* var bool = ( v === out );
7575
* // returns true

base/special/fresnel/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* var out = new Float64Array( 2 );
4848
*
4949
* var v = fresnel.assign( 0.0, out, 1, 0 );
50-
* // return <Float64Array>[ ~0.0, ~0.0 ]
50+
* // returns <Float64Array>[ ~0.0, ~0.0 ]
5151
*
5252
* var bool = ( v === out );
5353
* // returns true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ interface SinCos {
6262
* var out = new Float64Array( 2 );
6363
*
6464
* var v = sincos.assign( 0.0, out, 1, 0 );
65-
* // return <Float64Array>[ ~0.0, ~1.0 ]
65+
* // returns <Float64Array>[ ~0.0, ~1.0 ]
6666
*
6767
* var bool = ( v === out );
6868
* // returns true

base/special/sincos/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* var out = new Float64Array( 2 );
4545
*
4646
* var v = sincos.assign( 0.0, out, 1, 0 );
47-
* // return <Float64Array>[ ~0.0, ~1.0 ]
47+
* // returns <Float64Array>[ ~0.0, ~1.0 ]
4848
*
4949
* var bool = ( v === out );
5050
* // returns true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ interface sincosd {
6262
* var out = new Float64Array( 2 );
6363
*
6464
* var v = sincosd.assign( 0.0, out, 1, 0 );
65-
* // return <Float64Array>[ ~0.0, ~1.0 ]
65+
* // returns <Float64Array>[ ~0.0, ~1.0 ]
6666
*
6767
* var bool = ( v === out );
6868
* // returns true

base/special/sincosd/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* var out = new Float64Array( 2 );
4545
*
4646
* var v = sincosd.assign( 0.0, out, 1, 0 );
47-
* // return <Float64Array>[ ~0.0, ~1.0 ]
47+
* // returns <Float64Array>[ ~0.0, ~1.0 ]
4848
*
4949
* var bool = ( v === out );
5050
* // returns true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ interface SinCosf {
6262
* var out = new Float32Array( 2 );
6363
*
6464
* var v = sincosf.assign( 0.0, out, 1, 0 );
65-
* // return <Float32Array>[ ~0.0, ~1.0 ]
65+
* // returns <Float32Array>[ ~0.0, ~1.0 ]
6666
*
6767
* var bool = ( v === out );
6868
* // returns true

base/special/sincosf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* var out = new Float32Array( 2 );
4646
*
4747
* var v = sincosf.assign( 0.0, out, 1, 0 );
48-
* // return <Float32Array>[ ~0.0, ~1.0 ]
48+
* // returns <Float32Array>[ ~0.0, ~1.0 ]
4949
*
5050
* var bool = ( v === out );
5151
* // returns true

0 commit comments

Comments
 (0)