Skip to content

Commit

Permalink
Fix link in docstring of big() (#36375)
Browse files Browse the repository at this point in the history
There are two `BigFloat` docstrings: for the type and for the method (constructor).
This changes the link target from the former to the latter.
  • Loading branch information
kimikage committed Jun 30, 2020
1 parent e2dce5e commit c94e8d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/gmp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,8 @@ promote_rule(::Type{BigInt}, ::Type{<:Integer}) = BigInt
big(x)
Convert a number to a maximum precision representation (typically [`BigInt`](@ref) or
`BigFloat`). See [`BigFloat`](@ref) for information about some pitfalls with floating-point numbers.
`BigFloat`). See [`BigFloat`](@ref BigFloat(::Any, rounding::RoundingMode)) for
information about some pitfalls with floating-point numbers.
"""
function big end

Expand Down

0 comments on commit c94e8d2

Please sign in to comment.