Skip to content

Commit dab9a78

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: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - 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 ef9d0a0 commit dab9a78

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

lib/node_modules/@stdlib/math/base/special/acsc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"alias": "acsc",
7474
"pkg_desc": "compute the arccosecant",
7575
"desc": "computes the arccosecant",
76-
"short_desc": "arcosecant",
76+
"short_desc": "arccosecant",
7777
"parameters": [
7878
{
7979
"name": "x",

lib/node_modules/@stdlib/ndarray/base/broadcast-array-except-dimensions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var broadcastArrayExceptDimensions = require( '@stdlib/ndarray/base/broadcast-ar
105105
var x = array( [ [ 1, 2, 3 ] ] );
106106
// returns <ndarray>
107107

108-
// Broadcast the array to 3x2x2:
108+
// Broadcast the array to 2x1x3:
109109
var y = broadcastArrayExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
110110
// returns <ndarray>
111111

lib/node_modules/@stdlib/ndarray/base/broadcast-array-except-dimensions/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
5353
* var shx = getShape( x );
5454
* // returns [ 1, 3 ]
5555
*
56-
* var y = broadcastArrayExceptDimensionsExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
56+
* var y = broadcastArrayExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
5757
* // returns <ndarray>
5858
*
5959
* var shy = getShape( y );

lib/node_modules/@stdlib/ndarray/base/broadcast-array-except-dimensions/test/test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -392,12 +392,6 @@ tape( 'the function broadcasts an input array (same number of dimensions)', func
392392

393393
v = y.get( i, 0, 1 );
394394
t.strictEqual( v, x.get( i, 0, 1 ), 'returns expected value for element ('+i+',0,1)' );
395-
396-
v = y.get( i, 0, 0 );
397-
t.strictEqual( v, x.get( i, 0, 0 ), 'returns expected value for element ('+i+',0,0)' );
398-
399-
v = y.get( i, 0, 1 );
400-
t.strictEqual( v, x.get( i, 0, 1 ), 'returns expected value for element ('+i+',0,1)' );
401395
}
402396
t.end();
403397
});

0 commit comments

Comments
 (0)