Skip to content

Commit 46489e1

Browse files
authored
Oops, lost a paren
1 parent 1fbcae1 commit 46489e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LinearMaps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function check_dim_mul(C, A, B)
5353
mA, nA = size(A) # A always has two dimensions
5454
mB, nB = size(B, 1), size(B, 2)
5555
(mB == nA) ||
56-
throw(DimensionMismatch("left factor has dimensions ($mA,$nA), right factor has dimensions ($mB,$nB)")
56+
throw(DimensionMismatch("left factor has dimensions ($mA,$nA), right factor has dimensions ($mB,$nB)"))
5757
(size(C, 1) != mA || size(C, 2) != nB) &&
5858
throw(DimensionMismatch("result has dimensions $(size(C)), needs ($mA,$nB)"))
5959
return nothing

0 commit comments

Comments
 (0)