In the Julia 1.0.0 REPL I get the following behavior. The first line is an example from the documentation https://docs.julialang.org/en/v1/base/math/#Base.Rounding.RoundFromZero
julia> BigFloat("1.0000000000000001", 5, RoundFromZero)
1.06
The meaning of the 5 in the above example is not clear to me. For example,
julia> BigFloat("1.01", 5, RoundFromZero)
1.06
It would seem that the two numbers being rounded should round to different outputs in the REPL. What am I missing?