Skip to content

Commit

Permalink
Fix signif deprecation (#26780)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkuhn authored and JeffBezanson committed Apr 12, 2018
1 parent 52f27a7 commit c45bbde
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 @@ -1511,7 +1511,7 @@ end
@deprecate floor(x::Number, digits) floor(x; digits=digits)
@deprecate ceil(x::Number, digits) ceil(x; digits=digits)
@deprecate round(x::Number, digits) round(x; digits=digits)
@deprecate signif(x::Number, digits) round(x; sigdigits=digits, base = base)
@deprecate signif(x::Number, digits) round(x; sigdigits=digits)

@deprecate trunc(x::Number, digits, base) trunc(x; digits=digits, base = base)
@deprecate floor(x::Number, digits, base) floor(x; digits=digits, base = base)
Expand Down

0 comments on commit c45bbde

Please sign in to comment.