Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lkdvos committed Nov 19, 2024
1 parent 63bc908 commit adaf2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linalg/linalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ end
end
end

_mull!!(::Nothing, A, B, α::Number, β::Number) = scale!!(A * B, α)
_mul!!(::Nothing, A, B, α::Number, β::Number) = scale!!(A * B, α)
_mul!!(C, A, B, α::Number, β::Number) = add!!(C, A * B, α, β)
const _TM_CAN_MUL = Union{TensorMap,AdjointTensorMap{<:TensorMap}}
function _mul!!(C::_TM_CAN_MUL, A::_TM_CAN_MUL, B::_TM_CAN_MUL, α::Number, β::Number)
Expand Down

0 comments on commit adaf2fe

Please sign in to comment.