Skip to content

Commit 78d3343

Browse files
committed
Auto-generated commit
1 parent 3265ece commit 78d3343

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+
- [`a395fc0`](https://github.com/stdlib-js/stdlib/commit/a395fc0b7b35e6367dd6990257cccde63c95f782) - **docs:** fix return values _(by Athan Reines)_
734735
- [`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)_
735736
- [`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)_
736737
- [`2e36fdf`](https://github.com/stdlib-js/stdlib/commit/2e36fdf188f8fe891f93ad0294059ef480e5aec2) - **feat:** add `chebyshevSeriesf` to namespace _(by Athan Reines)_

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var chebyshevSeries = require( './main.js' );
4545
* // returns 0.75
4646
*
4747
* var v = polyval( 0.0 ); // 1*T_0(0) + 0.5*T_1(0)
48-
* // returns 0.5
48+
* // returns 0.25
4949
*/
5050
function factory( c ) {
5151
var f;

base/tools/chebyshev-series/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
* var 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)