From 38346a66a96ea742fb0d037120863955dc0fb87e Mon Sep 17 00:00:00 2001 From: kaushal-kumar-it Date: Fri, 26 Dec 2025 16:47:49 +0530 Subject: [PATCH] docs: improve doctests for ndarray instances in `ndarray/count-falsy` --- 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: na - task: lint_package_json status: na - task: lint_repl_help status: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/ndarray/count-falsy/docs/repl.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/count-falsy/docs/repl.txt b/lib/node_modules/@stdlib/ndarray/count-falsy/docs/repl.txt index cd094d5c81ab..2d2b8582ee0c 100644 --- a/lib/node_modules/@stdlib/ndarray/count-falsy/docs/repl.txt +++ b/lib/node_modules/@stdlib/ndarray/count-falsy/docs/repl.txt @@ -29,9 +29,7 @@ -------- > var x = {{alias:@stdlib/ndarray/array}}( [ [ 1.0, 1.0 ], [ 0.0, 1.0 ] ] ); > var y = {{alias}}( x ) - - > y.get() - 1 + [ 1 ] > y = {{alias}}( x, { 'keepdims': true } ) [ [ 1 ] ]