Skip to content

Commit bac739d

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 5756fb6 commit bac739d

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/zher/docs/types

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Layout, MatrixTriangle } from '@stdlib/types/blas';
2828
*/
2929
interface Routine {
3030
/**
31-
* Performs the hermitian rank 1 operation `A = alpha*x*x**H + A`, where `alpha` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
31+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
3232
*
3333
* @param order - storage layout
3434
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
@@ -52,7 +52,7 @@ interface Routine {
5252
( order: Layout, uplo: MatrixTriangle, N: number, alpha: number, x: Complex128Array, strideX: number, A: Complex128Array, LDA: number ): Complex128Array;
5353

5454
/**
55-
* Performs the hermitian rank 1 operation `A = alpha*x*x**H + A`, using alternative semantics indexing and where `alpha` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
55+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, using alternative semantics indexing and where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
5656
*
5757
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.
5858
* @param N - number of elements along each dimension of `A`
@@ -79,7 +79,7 @@ interface Routine {
7979
}
8080

8181
/**
82-
* Performs the hermitian rank 1 operation `A = alpha*x*x**H + A`, where `alpha` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
82+
* Performs the hermitian rank 1 operation `A = α*x*x**H + A`, where `α` is a real scalar, `x` is an `N` element vector and `A` is an `N` by `N` hermitian matrix.
8383
*
8484
* @param order - storage layout
8585
* @param uplo - specifies whether `A` is an upper or lower triangular part of matrix is supplied.

0 commit comments

Comments
 (0)