diff --git a/base/docs/helpdb/Base.jl b/base/docs/helpdb/Base.jl index 4f6cb0b6dc26c..9b11cbed6995c 100644 --- a/base/docs/helpdb/Base.jl +++ b/base/docs/helpdb/Base.jl @@ -5010,7 +5010,7 @@ julia> deleteat!([6, 5, 4, 3, 2, 1], 1:2:5) julia> deleteat!([6, 5, 4, 3, 2, 1], (2, 2)) ERROR: ArgumentError: indices must be unique and sorted - in deleteat!(::Array{Int64,1}, ::Tuple{Int64,Int64}) at ./array.jl:537 + in deleteat!(::Array{Int64,1}, ::Tuple{Int64,Int64}) at ./array.jl:541 ... ``` """ diff --git a/doc/manual/complex-and-rational-numbers.rst b/doc/manual/complex-and-rational-numbers.rst index 00ab37d26a3b4..aa9cd00783e47 100644 --- a/doc/manual/complex-and-rational-numbers.rst +++ b/doc/manual/complex-and-rational-numbers.rst @@ -159,7 +159,7 @@ versus ``-1 + 0im`` even though ``-1 == -1 + 0im``: julia> sqrt(-1) ERROR: DomainError: sqrt will only return a complex result if called with a complex argument. Try sqrt(complex(x)). - in sqrt(::Int64) at ./math.jl:154 + in sqrt(::Int64) at ./math.jl:169 ... julia> sqrt(-1 + 0im) diff --git a/doc/manual/control-flow.rst b/doc/manual/control-flow.rst index 0e5b8913a3805..0a1180581594b 100644 --- a/doc/manual/control-flow.rst +++ b/doc/manual/control-flow.rst @@ -666,7 +666,7 @@ negative real value: julia> sqrt(-1) ERROR: DomainError: sqrt will only return a complex result if called with a complex argument. Try sqrt(complex(x)). - in sqrt(::Int64) at ./math.jl:154 + in sqrt(::Int64) at ./math.jl:169 ... You may define your own exceptions in the following way: diff --git a/doc/manual/mathematical-operations.rst b/doc/manual/mathematical-operations.rst index c7925dea544e6..36fba25e8c46f 100644 --- a/doc/manual/mathematical-operations.rst +++ b/doc/manual/mathematical-operations.rst @@ -427,7 +427,7 @@ The following examples show the different forms. julia> round(Int8,127.6) ERROR: InexactError() - in trunc(::Type{Int8}, ::Float64) at ./float.jl:456 + in trunc(::Type{Int8}, ::Float64) at ./float.jl:458 in round(::Type{Int8}, ::Float64) at ./float.jl:211 ... diff --git a/doc/stdlib/collections.rst b/doc/stdlib/collections.rst index 6df9f2c837cdf..ad81ed3f37987 100644 --- a/doc/stdlib/collections.rst +++ b/doc/stdlib/collections.rst @@ -1162,7 +1162,7 @@ Dequeues julia> deleteat!([6, 5, 4, 3, 2, 1], (2, 2)) ERROR: ArgumentError: indices must be unique and sorted - in deleteat!(::Array{Int64,1}, ::Tuple{Int64,Int64}) at ./array.jl:537 + in deleteat!(::Array{Int64,1}, ::Tuple{Int64,Int64}) at ./array.jl:541 ... .. function:: splice!(collection, index, [replacement]) -> item