Skip to content

Commit 92564b0

Browse files
committed
style: fix indentation and rename files
1 parent 5e6bc89 commit 92564b0

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
"non-unit",
2+
"non-unit",
33
"unit"
44
]
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[
2+
"row-major",
3+
"column-major"
4+
]

lib/node_modules/@stdlib/blas/base/layouts/lib/layouts.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

lib/node_modules/@stdlib/blas/base/layouts/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var LAYOUTS = require( './layouts.json' );
23+
var DATA = require( './data.json' );
2424

2525

2626
// MAIN //
@@ -35,7 +35,7 @@ var LAYOUTS = require( './layouts.json' );
3535
* // e.g., returns [ 'row-major', 'column-major' ]
3636
*/
3737
function layouts() {
38-
return LAYOUTS.slice();
38+
return DATA.slice();
3939
}
4040

4141

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
"upper",
2+
"upper",
33
"lower"
44
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
"left",
2+
"left",
33
"right"
44
]
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[
2-
"none",
2+
"none",
33
"transpose",
44
"conjugate-transpose"
55
]

lib/node_modules/@stdlib/blas/base/transpose-operations/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var OPS = require( './ops.json' );
23+
var DATA = require( './data.json' );
2424

2525

2626
// MAIN //
@@ -35,7 +35,7 @@ var OPS = require( './ops.json' );
3535
* // e.g., returns [ 'none', 'transpose', 'conjugate-transpose' ]
3636
*/
3737
function layouts() {
38-
return OPS.slice();
38+
return DATA.slice();
3939
}
4040

4141

0 commit comments

Comments
 (0)