Skip to content

Commit ab0f0a7

Browse files
committed
docs: fix examples
--- 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: na - 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: passed - task: lint_license_headers status: passed ---
1 parent 3023106 commit ab0f0a7

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/find/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/find/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ interface Find {
167167
*
168168
* var opts = {
169169
* 'dims': [ 0 ]
170-
* }
170+
* };
171171
*
172172
* // Perform the operation:
173173
* var out = find( x, opts, isEven );
@@ -253,7 +253,7 @@ interface Find {
253253
* var x = new ndarray( 'float64', xbuf, shape, sx, ox, 'row-major' );
254254
*
255255
* // Create an output ndarray:
256-
* var y = empty( [ 2 ], {
256+
* var y = empty( [], {
257257
* 'dtype': 'float64'
258258
* });
259259
*

0 commit comments

Comments
 (0)