Skip to content

Commit 86b21ce

Browse files
chore: update fixture script example
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - 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: missing_dependencies - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f720d69 commit 86b21ce

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/math/base/special/legendre-polynomial/test/fixtures/python

lib/node_modules/@stdlib/math/base/special/legendre-polynomial/test/fixtures/python/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ def gen(n, x, name):
3535
3636
# Arguments
3737
38-
* `n`: degrees
39-
* `x`: evaluation points
38+
* `n`: degree
39+
* `x`: evaluation point
4040
* `name::str`: output filename
4141
4242
# Examples
4343
4444
``` python
45-
python> n = np.arange(0, 30)
45+
python> n = np.linspace(0, 30, 30, dtype=int)
4646
python> x = np.linspace(-1.0, 1.0, 30)
4747
python> gen(n, x, './data.json')
4848
```

0 commit comments

Comments
 (0)