Skip to content

Commit cbb9a3c

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 4dba421 commit cbb9a3c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-ordered-list-marker-value/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function beep() {
8282
}
8383
```
8484

85-
The [rule][eslint-rules] may be configured using the same options as supported by [remark][remark-lint-ordered-list-marker-value].
85+
The [rule][eslint-rules] may be configured using the same options as supported by [remark][remark-lint-ordered-list-marker-value].
8686

8787
- `ordered`: increment list item markers by one (default).
8888
- `single`: list item markers should all have the same starting value.

lib/node_modules/@stdlib/assert/napi/equal-typedarray-types/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
132132
The function accepts the following arguments:
133133
134134
- **env**: `[in] napi_env` environment under which the function is invoked.
135-
- **type1**: `[in] napi_valuetype` first data type.
136-
- **type2**: `[in] napi_valuetype` second data type.
135+
- **type1**: `[in] napi_typedarray_type` first data type.
136+
- **type2**: `[in] napi_typedarray_type` second data type.
137137
- **message**: `[in] char*` error message.
138138
- **err**: `[out] napi_value*` pointer for storing a JavaScript error.
139139

lib/node_modules/@stdlib/assert/napi/has-property/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The function returns a `napi_status` status code indicating success or failure (
153153

154154
### Notes
155155

156-
- If not provided a typed array, the function sets `err` with a JavaScript error; otherwise, `err` is set to `NULL`.
156+
- If the value does not have the specified property, the function sets `err` with a JavaScript error; otherwise, `err` is set to `NULL`.
157157

158158
</section>
159159

lib/node_modules/@stdlib/assert/napi/status-ok/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ static double foo( const napi_env env, const napi_value value ) {
171171

172172
// ...
173173

174-
return out;
174+
return *out;
175175
}
176176
```
177177

0 commit comments

Comments
 (0)