Skip to content

Commit 55fe412

Browse files
committed
fix: rename fields to be more explicit
--- 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 51560ac commit 55fe412

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/matrix-orientations/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ bool = isMatrixOrientation( 'beep' );
124124

125125
An enumeration of BLAS matrix orientations with the following fields:
126126

127-
- **STDLIB_BLAS_ROWS**: data is stored along matrix rows.
128-
- **STDLIB_BLAS_COLUMNS**: data is stored along matrix columns.
127+
- **STDLIB_BLAS_ROW_MATRIX**: data is stored along matrix rows.
128+
- **STDLIB_BLAS_COLUMN_MATRIX**: data is stored along matrix columns.
129129

130130
```c
131131
#include "stdlib/blas/base/matrix_orientations.h"
132132

133-
const enum STDLIB_BLAS_MATRIX_ORIENTATION v = STDLIB_BLAS_ROWS;
133+
const enum STDLIB_BLAS_MATRIX_ORIENTATION v = STDLIB_BLAS_ROW_MATRIX;
134134
```
135135

136136
</section>

lib/node_modules/@stdlib/blas/base/matrix-orientations/include/stdlib/blas/base/matrix_orientations.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
*/
2525
enum STDLIB_BLAS_MATRIX_ORIENTATION {
2626
// Row matrix:
27-
STDLIB_BLAS_ROWS = 241,
27+
STDLIB_BLAS_ROW_MATRIX = 241,
2828

2929
// Column matrix:
30-
STDLIB_BLAS_COLUMNS = 242,
30+
STDLIB_BLAS_COLUMN_MATRIX = 242,
3131
};
3232

3333
#endif // !STDLIB_BLAS_BASE_MATRIX_ORIENTATIONS_H

0 commit comments

Comments
 (0)