Skip to content

Commit 3265ece

Browse files
committed
Auto-generated commit
1 parent 3708465 commit 3265ece

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

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

732732
<details>
733733

734+
- [`59cfc31`](https://github.com/stdlib-js/stdlib/commit/59cfc311ef41bba1c23ce2db0368f8569ce5b38c) - **docs:** correct JSDoc return value in `math/base/tools/chebyshev-seriesf` [(#11584)](https://github.com/stdlib-js/stdlib/pull/11584) _(by Philipp Burckhardt)_
734735
- [`6f1f614`](https://github.com/stdlib-js/stdlib/commit/6f1f614099fd5d3d7efccbe4ac64b0ee3cc7a084) - **test:** migrate `math/base/special/acosd` to ULP-based testing [(#11601)](https://github.com/stdlib-js/stdlib/pull/11601) _(by Prajjwal Bajpai)_
735736
- [`2e36fdf`](https://github.com/stdlib-js/stdlib/commit/2e36fdf188f8fe891f93ad0294059ef480e5aec2) - **feat:** add `chebyshevSeriesf` to namespace _(by Athan Reines)_
736737
- [`2d1c3d6`](https://github.com/stdlib-js/stdlib/commit/2d1c3d6758dc3f7caffc15550ba945580625438d) - **feat:** add `math/base/tools/chebyshev-seriesf` [(#11564)](https://github.com/stdlib-js/stdlib/pull/11564) _(by anee3, Athan Reines)_

base/tools/chebyshev-seriesf/lib/factory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var chebyshevSeriesf = require( './main.js' );
4949
* // returns 0.75
5050
*
5151
* v = polyval( 0.0 ); // 1*T_0(0) + 0.5*T_1(0)
52-
* // returns 0.5
52+
* // returns 0.25
5353
*/
5454
function factory( c ) {
5555
var f;

base/tools/chebyshev-seriesf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* // returns 0.75
3939
*
4040
* v = polyval( 0.0 ); // 1*T_0(0) + 0.5*T_1(0)
41-
* // returns 0.5
41+
* // returns 0.25
4242
*/
4343

4444
// MODULES //

0 commit comments

Comments
 (0)