Skip to content

Commit

Permalink
Fix JuliaLang#39367, doc for inbounds use each index (JuliaLang#39369)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbauman authored and ElOceanografo committed May 4, 2021
1 parent a2cb4e5 commit c825776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/essentials.jl
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ element `i` of array `A` is skipped to improve performance.
```julia
function sum(A::AbstractArray)
r = zero(eltype(A))
for i = 1:length(A)
for i in eachindex(A)
@inbounds r += A[i]
end
return r
Expand Down

0 comments on commit c825776

Please sign in to comment.