From 668edde50a9c45b5933fbf5c30a7391d13245bc6 Mon Sep 17 00:00:00 2001 From: Lorenzo Bertini <106469113+bertini97@users.noreply.github.com> Date: Wed, 26 Nov 2025 21:51:09 +0100 Subject: [PATCH] Fixed typo in matmul.jl Changed "incomatible" to "incompatible" --- src/matmul.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matmul.jl b/src/matmul.jl index 311ddfcf..682691b4 100644 --- a/src/matmul.jl +++ b/src/matmul.jl @@ -465,7 +465,7 @@ end throw(DimensionMismatch( LazyString( "incompatible destination size: ", - lazy"the destination $strC of $size_or_len_str_C $C_size_len is incomatible with the product of a $strA of size $sizeA and a $strB of $size_or_len_str_B $B_size_len. ", + lazy"the destination $strC of $size_or_len_str_C $C_size_len is incompatible with the product of a $strA of size $sizeA and a $strB of $size_or_len_str_B $B_size_len. ", lazy"The destination must be of $size_or_len_str_dest $destsize." ) )