Skip to content

Commit 1891116

Browse files
committed
docs: minor clean-up
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9e95e4b commit 1891116

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/wasm/zscal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ mod.initializeSync();
160160

161161
#### zscal.Module.prototype.main( N, ap, xp, sx )
162162

163-
Scales values from `x` by `alpha` .
163+
Scales values from `x` by `alpha`.
164164

165165
<!-- eslint-disable node/no-sync -->
166166

lib/node_modules/@stdlib/stats/ranks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ out = ranks( data, {
8787
// returns [ 2, 2, 1, 4, 3 ]
8888
```
8989

90-
The `missing` option is used to specify how to handle missing data. By default, `NaN` or `null` are treated as missing values. `'last'`specifies that missing values are placed last, `'first'` that the are assigned the lowest ranks and `'remove'` means that they are removed from the array before the ranks are calculated.
90+
The `missing` option is used to specify how to handle missing data. By default, `NaN` or `null` are treated as missing values. `'last'` specifies that missing values are placed last, `'first'` that they are assigned the lowest ranks and `'remove'` means that they are removed from the array before the ranks are calculated.
9191

9292
```javascript
9393
var data = [ NaN, 2, 2, 1, 4, 3, null, null ];

0 commit comments

Comments
 (0)