From a9f0115a0fb54e7084370ae884bff4a41f825041 Mon Sep 17 00:00:00 2001 From: Lyndon White Date: Tue, 4 May 2021 19:38:46 +0100 Subject: [PATCH] tiny docstring typo fix --- src/accumulation.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.