Skip to content

Commit

Permalink
fix typo (#35024)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquimg authored and KristofferC committed Apr 11, 2020
1 parent 5102a42 commit 82542a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/dict.jl
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ end
function map!(f, iter::ValueIterator{<:Dict})
dict = iter.dict
vals = dict.vals
# @inbounds is here so the it gets propigated to isslotfiled
# @inbounds is here so the it gets propagated to isslotfiled
@inbounds for i = dict.idxfloor:lastindex(vals)
if isslotfilled(dict, i)
vals[i] = f(vals[i])
Expand Down

0 comments on commit 82542a9

Please sign in to comment.