From c94e8d2a387a9e7899606ffe740fd44d6106b6fb Mon Sep 17 00:00:00 2001 From: kimikage Date: Wed, 1 Jul 2020 03:31:51 +0900 Subject: [PATCH] Fix link in docstring of `big()` (#36375) There are two `BigFloat` docstrings: for the type and for the method (constructor). This changes the link target from the former to the latter. --- base/gmp.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/gmp.jl b/base/gmp.jl index 08fcd3ae8b589..d2a2ab3385ba4 100644 --- a/base/gmp.jl +++ b/base/gmp.jl @@ -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