Skip to content

Commit

Permalink
fix typo in Timer deprecation
Browse files Browse the repository at this point in the history
This is an apparent typo in the deprecation from #25647, cc @JeffBezanson
  • Loading branch information
stevengj authored Feb 3, 2018
1 parent f37d8d7 commit bb794ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ function lastindex(a, n)
end

@deprecate Timer(timeout, repeat) Timer(timeout, interval = repeat)
@deprecate Timer(callback, delay, repeat) Time(callback, delay, interval = repeat)
@deprecate Timer(callback, delay, repeat) Timer(callback, delay, interval = repeat)
@deprecate names(m, all) names(m, all = all)
@deprecate names(m, all, imported) names(m, all = all, imported = imported)
@deprecate eachmatch(re, str, overlap) eachmatch(re, str, overlap = overlap)
Expand Down

0 comments on commit bb794ea

Please sign in to comment.