Skip to content

Commit 02cbcb4

Browse files
committed
Convert unnecesary LazyString to String
1 parent 651edc8 commit 02cbcb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matmul.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ end
430430
pos_str_B = LazyString(length(sizeA) == length(sizeB) ? "second " : "", strB)
431431
throw(DimensionMismatch(
432432
LazyString(
433-
lazy"incompatible dimensions for matrix multiplication: ",
433+
"incompatible dimensions for matrix multiplication: ",
434434
lazy"tried to multiply a $strA of size $sizeA with a $strB of $size_or_len_str_B $B_size_len. ",
435435
lazy"The second dimension of the $pos_str_A: $szA2, does not match the $dim_or_len_str_B of the $pos_str_B: $(sizeB[1])."
436436
)

0 commit comments

Comments
 (0)