Skip to content

Commit 5902973

Browse files
committed
fix: fixed issues 6574 and 6589
--- 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 1065e83 commit 5902973

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

lib/node_modules/@stdlib/datasets/nightingales-rose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ date,army_size,disease,wounds,other
161161

162162
## References
163163

164-
- Nightingale, Florence. 1859. [_A contribution to the sanitary history of the British army during the late war with Russia_][@nightingale:1859a]. London, United Kingdom: John W. Parker and Son.
164+
- Nightingale, Florence. 1859. [_A contribution to the sanitary history of the British army during the late war with Russia_][@nightingale:1859a]. London, United Kingdom: John W. Parker and Son.
165165

166166
</section>
167167

lib/node_modules/@stdlib/ndarray/base/lib/index.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,15 @@ setReadOnly( ns, 'empty', require( '@stdlib/ndarray/base/empty' ) );
301301
*/
302302
setReadOnly( ns, 'emptyLike', require( '@stdlib/ndarray/base/empty-like' ) );
303303

304+
/**
305+
* @name every
306+
* @memberof ns
307+
* @readonly
308+
* @type {Function}
309+
* @see {@link module:@stdlib/ndarray/base/every}
310+
*/
311+
setReadOnly( ns, 'every', require( '@stdlib/ndarray/base/every' ) );
312+
304313
/**
305314
* @name expandDimensions
306315
* @memberof ns
@@ -391,6 +400,15 @@ setReadOnly( ns, 'scalar2ndarray', require( '@stdlib/ndarray/base/from-scalar' )
391400
*/
392401
setReadOnly( ns, 'scalar2ndarrayLike', require( '@stdlib/ndarray/base/from-scalar-like' ) );
393402

403+
/**
404+
* @name includes
405+
* @memberof ns
406+
* @readonly
407+
* @type {Function}
408+
* @see {@link module:@stdlib/ndarray/base/includes}
409+
*/
410+
setReadOnly( ns, 'includes', require( '@stdlib/ndarray/base/includes' ) );
411+
394412
/**
395413
* @name ind
396414
* @memberof ns
@@ -904,6 +922,15 @@ setReadOnly( ns, 'transpose', require( '@stdlib/ndarray/base/transpose' ) );
904922
*/
905923
setReadOnly( ns, 'unary', require( '@stdlib/ndarray/base/unary' ) );
906924

925+
/**
926+
* @name unaryAccumulate
927+
* @memberof ns
928+
* @readonly
929+
* @type {Function}
930+
* @see {@link module:@stdlib/ndarray/base/unary-accumulate}
931+
*/
932+
setReadOnly( ns, 'unaryAccumulate', require( '@stdlib/ndarray/base/unary-accumulate' ) );
933+
907934
/**
908935
* @name unaryBy
909936
* @memberof ns
@@ -931,6 +958,15 @@ setReadOnly( ns, 'unaryLoopOrder', require( '@stdlib/ndarray/base/unary-loop-int
931958
*/
932959
setReadOnly( ns, 'unaryOutputDataType', require( '@stdlib/ndarray/base/unary-output-dtype' ) );
933960

961+
/**
962+
* @name unaryReduceSubarray
963+
* @memberof ns
964+
* @readonly
965+
* @type {Function}
966+
* @see {@link module:@stdlib/ndarray/base/unary-reduce-subarray}
967+
*/
968+
setReadOnly( ns, 'unaryReduceSubarray', require( '@stdlib/ndarray/base/unary-reduce-subarray' ) );
969+
934970
/**
935971
* @name unaryBlockSize
936972
* @memberof ns

0 commit comments

Comments
 (0)