Skip to content

Commit 40e35d5

Browse files
committed
Fix typo.
1 parent c3ed61a commit 40e35d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_linalg_matrix_functions.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ contains
4545

4646
if (lda<1 .or. n<1 .or. lda/=n .or. lde/=n .or. ne/=n) then
4747
err0 = linalg_state_type(this,LINALG_VALUE_ERROR, &
48-
'invalid matrix sizes: A must be square (lda=', lda, ', n=', n, '), &
48+
'invalid matrix sizes: A must be square (lda=', lda, ', n=', n, ')', &
4949
' E must be square (lde=', lde, ', ne=', ne, ')')
5050
else
5151
E(:n, :n) = A(:n, :n) ; call stdlib_linalg_${ri}$_expm_inplace(E, order, err0)

0 commit comments

Comments
 (0)