Skip to content

Commit

Permalink
Fix #39367, doc for inbounds use each index
Browse files Browse the repository at this point in the history
  • Loading branch information
mbauman authored Jan 23, 2021
1 parent ae53238 commit 03b0e98
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 03b0e98

Please sign in to comment.