Skip to content

Commit bd7f7aa

Browse files
committed
docs: update comments
1 parent ff6ede6 commit bd7f7aa

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared/cblas.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -89,24 +89,24 @@ typedef enum CBLAS_TRANSPOSE {
8989
} CBLAS_TRANSPOSE;
9090
#endif
9191

92-
// Upper/lower part:
92+
// Upper/lower triangular part:
9393
#ifndef CBLAS_UPLO
9494
typedef enum CBLAS_UPLO {
95-
// Upper part:
95+
// Upper triangular part:
9696
CblasUpper = 121,
9797

98-
// Lower part:
98+
// Lower triangular part:
9999
CblasLower = 122,
100100
} CBLAS_UPLO;
101101
#endif
102102

103-
// Diagonal matrix:
103+
// Diagonal elements:
104104
#ifndef CBLAS_DIAG
105105
typedef enum CBLAS_DIAG {
106-
// Non-unit:
106+
// Non-unit triangular matrix:
107107
CblasNonUnit = 131,
108108

109-
// Unit:
109+
// Unit triangular matrix:
110110
CblasUnit = 132,
111111
} CBLAS_DIAG;
112112
#endif

0 commit comments

Comments
 (0)