Skip to content

Commit 59cfc31

Browse files
authored
docs: correct JSDoc return value in math/base/tools/chebyshev-seriesf
PR-URL: #11584 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent c59b5f4 commit 59cfc31

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/math/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;

lib/node_modules/@stdlib/math/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)