Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/accumulation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down