Skip to content

Commit 75a09fd

Browse files
committed
docs: update notes
--- 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: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 302966e commit 75a09fd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/array/base/zip2objects/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The function supports the following parameters:
5656
<section class="notes">
5757

5858
- The function assumes that the list of arrays to be zipped all have the same length.
59-
- The list of provided array labels should equal the number of arrays to be zipped.
59+
- The number of provided array labels should equal the number of arrays to be zipped.
6060

6161
</section>
6262

lib/node_modules/@stdlib/array/base/zip2objects/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The function assumes that the list of arrays to be zipped all have the same
66
length.
77

8-
The list of provided array labels should equal the number of arrays to be
8+
The number of provided array labels should equal the number of arrays to be
99
zipped.
1010

1111
Parameters

lib/node_modules/@stdlib/array/base/zip2objects/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type PropertyKey = string | number | symbol;
3333
* ## Notes
3434
*
3535
* - The function assumes that the list of arrays to be zipped all have the same length.
36-
* - The list of provided array labels should equal the number of arrays to be zipped.
36+
* - The number of provided array labels should equal the number of arrays to be zipped.
3737
*
3838
* @param arrays - list of arrays to be zipped
3939
* @param labels - list of array labels

lib/node_modules/@stdlib/array/base/zip2objects/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var resolveGetter = require( '@stdlib/array/base/resolve-getter' );
3131
* ## Notes
3232
*
3333
* - The function assumes that the list of arrays to be zipped all have the same length.
34-
* - The list of provided array labels should equal the number of arrays to be zipped.
34+
* - The number of provided array labels should equal the number of arrays to be zipped.
3535
*
3636
* @param {Collection<Collection>} arrays - list of arrays to be zipped
3737
* @param {ArrayLikeObject<string>} labels - list of array labels

0 commit comments

Comments
 (0)