Skip to content

Commit 5df47c3

Browse files
committed
chore: 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: passed - task: lint_repl_help status: na - 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 aba885d commit 5df47c3

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

lib/node_modules/@stdlib/datasets/savoy-stopwords-ger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/datasets/savoy-stopwords-ger",
33
"version": "0.0.0",
4-
"description": "A list German stop words.",
4+
"description": "A list of German stop words.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/datasets/sotu/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ interface Options {
6464
*
6565
* @example
6666
* var speeches = sotu({
67-
* 'name': [ 'Franklin D Roosevelt', 'William J. Clinton' ]
67+
* 'name': [ 'Franklin D Roosevelt', 'William J Clinton' ]
6868
* });
6969
* // returns <ObjectArray>
7070
*/

lib/node_modules/@stdlib/datasets/sotu/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* var speeches = sotu({
3636
* 'name': [
3737
* 'Franklin D Roosevelt',
38-
* 'William J. Clinton'
38+
* 'William J Clinton'
3939
* ]
4040
* });
4141
* // returns <ObjectArray>

lib/node_modules/@stdlib/datasets/sotu/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var getFile = require( './get_file.js' );
5353
*
5454
* @example
5555
* var speeches = sotu({
56-
* 'name': [ 'Franklin D Roosevelt', 'William J. Clinton' ]
56+
* 'name': [ 'Franklin D Roosevelt', 'William J Clinton' ]
5757
* });
5858
* // returns <ObjectArray>
5959
*/

lib/node_modules/@stdlib/datasets/standard-card-deck/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/datasets/standard-card-deck",
33
"version": "0.0.0",
4-
"description": "A list of cards.",
4+
"description": "A list of two or three letter abbreviations for each card in a standard 52-card deck.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/datasets/us-states-names/lib/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ var opts = {
4141
*
4242
* - This function synchronously reads data from disk for each invocation. Such behavior is intentional and so is the avoidance of `require`. We assume that invocations are infrequent, and we want to avoid the `require` cache. This means that we allow data to be garbage collected and a user is responsible for explicitly caching data.
4343
*
44+
* @throws {Error} unable to read data
4445
* @returns {StringArray} states
4546
*
4647
* @example

lib/node_modules/@stdlib/fs/close/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ if ( err instanceof Error ) {
7676

7777
## Notes
7878

79-
- The difference between this API and [`fs.closSync()`][node-fs] is that [`fs.closeSync()`][node-fs] will throw if an `error` is encountered (e.g., if given an invalid file descriptor) and this API will return an `error`.
79+
- The difference between this API and [`fs.closeSync()`][node-fs] is that [`fs.closeSync()`][node-fs] will throw if an `error` is encountered (e.g., if given an invalid file descriptor) and this API will return an `error`.
8080

8181
</section>
8282

lib/node_modules/@stdlib/iter/any-by/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* var it = array2iterator( [ 0, 0, 0, 0, 1 ] );
3535
*
36-
* var bool = iterAnyBy( it );
36+
* var bool = iterAnyBy( it, predicate );
3737
* // returns true
3838
*/
3939

lib/node_modules/@stdlib/iter/cuany-by/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*
3434
* var arr = array2iterator( [ 0, 0, 0, 1, 0 ] );
3535
*
36-
* var it = iterCuNoneBy( arr, isPositive );
36+
* var it = iterCuAnyBy( arr, isPositive );
3737
*
3838
* var v = it.next().value;
3939
* // returns false

lib/node_modules/@stdlib/iter/do-until-each/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/iter/until-each",
2+
"name": "@stdlib/iter/do-until-each",
33
"version": "0.0.0",
44
"description": "Create an iterator which, while a test condition is false, invokes a function for each iterated value before returning the iterated value.",
55
"license": "Apache-2.0",

0 commit comments

Comments
 (0)