diff --git a/src/accumulation.jl b/src/accumulation.jl index 291b43885..5c608550b 100644 --- a/src/accumulation.jl +++ b/src/accumulation.jl @@ -7,7 +7,7 @@ This avoids allocations when `x` can be mutated in this way. add!!(x, y) = x + y """ - add!!(x, t::ImplacableThunk) + add!!(x, t::InplacableThunk) The specialization of `add!!` for [`InplaceableThunk`](@ref) promises to only call `t.add!` on `x` if `x` is suitably mutable; otherwise it will be out of place.