Skip to content

Commit 8377ba6

Browse files
committed
fix: example comments and typos
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: passed - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent dec6ced commit 8377ba6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/chebyshev-t-polynomial/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# Chebyshev Polynomial of the first kind
21+
# chebyshevtpoly
2222

2323
> [Chebyshev Polynomial][chebyshev-polynomial] of the first kind.
2424

lib/node_modules/@stdlib/math/base/special/chebyshev-t-polynomial/lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
* var chebyshevtpoly = require( '@stdlib/math/base/special/chebyshev-t-polynomial' );
2828
*
2929
* var y = chebyshevtpoly( 0.0, 0.5 );
30-
* // returns -4.0
30+
* // returns 1.0
3131
*
3232
* y = chebyshevtpoly( 1.0, -0.5 );
33-
* // returns 10.0
33+
* // returns -0.5
3434
*
3535
* y = chebyshevtpoly( 5.0, 0.5 );
36-
* // returns 0.0
36+
* // returns 0.5
3737
*
3838
* y = chebyshevtpoly( 2.5, 0.5 );
3939
* // returns NaN

lib/node_modules/@stdlib/math/base/special/chebyshev-t-polynomial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/math/base/special/chebyshevtpoly",
2+
"name": "@stdlib/math/base/special/chebyshev-t-polynomial",
33
"version": "0.0.0",
44
"description": "Evaluates the Chebyshev polynomial of the first kind.",
55
"license": "Apache-2.0",

0 commit comments

Comments
 (0)