Skip to content

Commit 038983c

Browse files
committed
fix: indentation
--- 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: 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: 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 ---
1 parent 888f142 commit 038983c

File tree

2 files changed

+110
-110
lines changed

2 files changed

+110
-110
lines changed

lib/node_modules/@stdlib/blas/base/drotmg/docs/types/index.d.ts

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -23,47 +23,47 @@
2323
*/
2424
interface Routine {
2525
/**
26-
* Constructs the parameters for a modified Givens plane rotation.
27-
*
28-
* @param d1 - scaling factor for the first vector component
29-
* @param d2 - scaling factor for the second vector component
30-
* @param x1 - first component of the first vector
31-
* @param y1 - first component of the second vector
32-
* @returns - output array containing the rotation parameters
33-
*
34-
* @example
35-
* var out = drotmg( 3.0, 4.0, 1.5, 2.5 );
36-
* // returns <Float64Array>[ 1.0, 0.45, 0.0, 0.0, 0.6 ]
37-
*
38-
* @example
39-
* var out = drotmg( 3.0, 5.0, 1.0, 2.0 );
40-
* // returns <Float64Array>[ 1.0, 0.3, 0.0, 0.0, 0.5 ]
41-
*/
26+
* Constructs the parameters for a modified Givens plane rotation.
27+
*
28+
* @param d1 - scaling factor for the first vector component
29+
* @param d2 - scaling factor for the second vector component
30+
* @param x1 - first component of the first vector
31+
* @param y1 - first component of the second vector
32+
* @returns - output array containing the rotation parameters
33+
*
34+
* @example
35+
* var out = drotmg( 3.0, 4.0, 1.5, 2.5 );
36+
* // returns <Float64Array>[ 1.0, 0.45, 0.0, 0.0, 0.6 ]
37+
*
38+
* @example
39+
* var out = drotmg( 3.0, 5.0, 1.0, 2.0 );
40+
* // returns <Float64Array>[ 1.0, 0.3, 0.0, 0.0, 0.5 ]
41+
*/
4242
( d1: number, d2: number, x1: number, y1: number ): Float64Array;
4343

4444
/**
45-
* Constructs the parameters for a modified Givens plane rotation.
46-
*
47-
* @param d1 - scaling factor for the first vector component
48-
* @param d2 - scaling factor for the second vector component
49-
* @param x1 - first component of the first vector
50-
* @param y1 - first component of the second vector
51-
* @param out - output array
52-
* @param stride - index increment
53-
* @param offset - starting index
54-
* @returns - output array containing the rotation parameters
55-
*
56-
* @example
57-
* var Float64Array = require( '@stdlib/array/float64' );
58-
*
59-
* var out = new Float64Array( 5 );
60-
*
61-
* var y = drotmg.assign( 3.0, 4.0, 1.5, 2.5, out, 1, 0 );
62-
* // returns <Float64Array>[ 1.0, 0.45, 0.0, 0.0, 0.6 ]
63-
*
64-
* var bool = (y === out);
65-
* // returns true
66-
*/
45+
* Constructs the parameters for a modified Givens plane rotation.
46+
*
47+
* @param d1 - scaling factor for the first vector component
48+
* @param d2 - scaling factor for the second vector component
49+
* @param x1 - first component of the first vector
50+
* @param y1 - first component of the second vector
51+
* @param out - output array
52+
* @param stride - index increment
53+
* @param offset - starting index
54+
* @returns - output array containing the rotation parameters
55+
*
56+
* @example
57+
* var Float64Array = require( '@stdlib/array/float64' );
58+
*
59+
* var out = new Float64Array( 5 );
60+
*
61+
* var y = drotmg.assign( 3.0, 4.0, 1.5, 2.5, out, 1, 0 );
62+
* // returns <Float64Array>[ 1.0, 0.45, 0.0, 0.0, 0.6 ]
63+
*
64+
* var bool = (y === out);
65+
* // returns true
66+
*/
6767
assign( d1: number, d2: number, x1: number, y1: number, out: Float64Array, stride: number, offset: number ): Float64Array;
6868
}
6969

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
11
{
2-
"name": "@stdlib/blas/base/drotmg",
3-
"version": "0.0.0",
4-
"description": "Construct a Givens plane rotation.",
5-
"license": "Apache-2.0",
6-
"author": {
2+
"name": "@stdlib/blas/base/drotmg",
3+
"version": "0.0.0",
4+
"description": "Construct a Givens plane rotation.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
712
"name": "The Stdlib Authors",
813
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9-
},
10-
"contributors": [
11-
{
12-
"name": "The Stdlib Authors",
13-
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14-
}
15-
],
16-
"main": "./lib",
17-
"directories": {
18-
"benchmark": "./benchmark",
19-
"doc": "./docs",
20-
"example": "./examples",
21-
"lib": "./lib",
22-
"test": "./test"
23-
},
24-
"types": "./docs/types",
25-
"scripts": {},
26-
"homepage": "https://github.com/stdlib-js/stdlib",
27-
"repository": {
28-
"type": "git",
29-
"url": "git://github.com/stdlib-js/stdlib.git"
30-
},
31-
"bugs": {
32-
"url": "https://github.com/stdlib-js/stdlib/issues"
33-
},
34-
"dependencies": {},
35-
"devDependencies": {},
36-
"engines": {
37-
"node": ">=0.10.0",
38-
"npm": ">2.7.0"
39-
},
40-
"os": [
41-
"aix",
42-
"darwin",
43-
"freebsd",
44-
"linux",
45-
"macos",
46-
"openbsd",
47-
"sunos",
48-
"win32",
49-
"windows"
50-
],
51-
"keywords": [
52-
"stdlib",
53-
"stdmath",
54-
"mathematics",
55-
"math",
56-
"blas",
57-
"level 1",
58-
"drotmg",
59-
"parameters",
60-
"modified",
61-
"givens",
62-
"rotation",
63-
"matrix",
64-
"linear",
65-
"algebra",
66-
"subroutines",
67-
"vector",
68-
"array",
69-
"ndarray",
70-
"float64",
71-
"float",
72-
"single",
73-
"float32array"
74-
]
75-
}
14+
}
15+
],
16+
"main": "./lib",
17+
"directories": {
18+
"benchmark": "./benchmark",
19+
"doc": "./docs",
20+
"example": "./examples",
21+
"lib": "./lib",
22+
"test": "./test"
23+
},
24+
"types": "./docs/types",
25+
"scripts": {},
26+
"homepage": "https://github.com/stdlib-js/stdlib",
27+
"repository": {
28+
"type": "git",
29+
"url": "git://github.com/stdlib-js/stdlib.git"
30+
},
31+
"bugs": {
32+
"url": "https://github.com/stdlib-js/stdlib/issues"
33+
},
34+
"dependencies": {},
35+
"devDependencies": {},
36+
"engines": {
37+
"node": ">=0.10.0",
38+
"npm": ">2.7.0"
39+
},
40+
"os": [
41+
"aix",
42+
"darwin",
43+
"freebsd",
44+
"linux",
45+
"macos",
46+
"openbsd",
47+
"sunos",
48+
"win32",
49+
"windows"
50+
],
51+
"keywords": [
52+
"stdlib",
53+
"stdmath",
54+
"mathematics",
55+
"math",
56+
"blas",
57+
"level 1",
58+
"drotmg",
59+
"parameters",
60+
"modified",
61+
"givens",
62+
"rotation",
63+
"matrix",
64+
"linear",
65+
"algebra",
66+
"subroutines",
67+
"vector",
68+
"array",
69+
"ndarray",
70+
"float64",
71+
"float",
72+
"single",
73+
"float32array"
74+
]
75+
}

0 commit comments

Comments
 (0)