Skip to content

Commit 9b0d519

Browse files
committed
refactor: apply suggestions from code review
--- 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: passed - 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 0418c32 commit 9b0d519

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/pop/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ var x = array( buf, {
146146
});
147147
console.log( ndarray2array( x ) );
148148

149-
// Remove the last row from each matrix:
150-
var y = pop( x, 1 );
149+
// Perform operation:
150+
var y = pop( x );
151151

152152
console.log( ndarray2array( y[ 0 ] ) );
153153
console.log( ndarray2array( y[ 1 ] ) );

lib/node_modules/@stdlib/ndarray/pop/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ var x = array( buf, {
3232
});
3333
console.log( ndarray2array( x ) );
3434

35-
// Remove the last row from each matrix:
36-
var y = pop( x, 1 );
35+
// Perform operation:
36+
var y = pop( x );
3737

3838
console.log( ndarray2array( y[ 0 ] ) );
3939
console.log( ndarray2array( y[ 1 ] ) );

0 commit comments

Comments
 (0)