Skip to content

Commit c709856

Browse files
committed
docs: use parameter name from function signature
--- 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: 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: 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 4ff1816 commit c709856

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/ndarray/push

lib/node_modules/@stdlib/ndarray/push/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var out = push( x, 5.0, 6.0, 7.0 );
5555

5656
The function accepts the following arguments:
5757

58-
- **arr**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
58+
- **x**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
5959
- **...values**: scalar values to append.
6060

6161
#### push.assign( x, ...values, out )
@@ -78,7 +78,7 @@ var bool = ( out === y );
7878

7979
The function accepts the following arguments:
8080

81-
- **arr**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
81+
- **x**: input [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
8282
- **...values**: scalar values to append.
8383
- **out**: output [ndarray][@stdlib/ndarray/ctor]. Must be one-dimensional.
8484

0 commit comments

Comments
 (0)