Skip to content

Commit 7a1f294

Browse files
committed
Remove doc reference to Base.add_sum
1 parent e58c6e6 commit 7a1f294

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

base/accumulate.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ julia> cumsum(a, dims=2)
106106
107107
In the former case, the integers are widened to system word size and
108108
therefore the result is `Int64[100, 128]`. In the latter case, no such
109-
widening happens and integer overflow results in `Int8[100, -128]`. See also
110-
[`Base.add_sum`](@ref)
109+
widening happens and integer overflow results in `Int8[100, -128]`.
111110
"""
112111
function cumsum(A::AbstractArray{T}; dims::Integer) where T
113112
out = similar(A, promote_op(add_sum, T, T))

0 commit comments

Comments
 (0)