diff --git a/base/accumulate.jl b/base/accumulate.jl index 74c1c3a8c58e0..c5c4e83b3b0e3 100644 --- a/base/accumulate.jl +++ b/base/accumulate.jl @@ -191,7 +191,7 @@ cumprod(x::AbstractVector) = cumprod(x, dims=1) accumulate(op, A; dims::Integer, [init]) Cumulative operation `op` along the dimension `dims` of `A` (providing `dims` is optional -for vectors). An inital value `init` may optionally be provided by a keyword argument. See +for vectors). An initial value `init` may optionally be provided by a keyword argument. See also [`accumulate!`](@ref) to use a preallocated output array, both for performance and to control the precision of the output (e.g. to avoid overflow). For common operations there are specialized variants of `accumulate`, see: [`cumsum`](@ref), [`cumprod`](@ref)