Skip to content

Commit

Permalink
docs: remove redundant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jul 28, 2024
1 parent 618a1a2 commit d5499f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/lapack/base/dlacpy/lib/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,6 @@ function dlacpy( uplo, M, N, A, strideA1, strideA2, offsetA, B, strideB1, stride
if ( uplo === 'lower' ) {
return copyLower( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB );
}
// Copy all of matrix `A` to matrix `B`:
return copyAll( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB );
}

Expand Down

0 comments on commit d5499f3

Please sign in to comment.