Skip to content

Commit

Permalink
fix 32-bit overflow in hypot doc (#32896)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj authored and StefanKarpinski committed Aug 14, 2019
1 parent 57a022f commit 314271b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/math.jl
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ The article is available online at ArXiv at the link
# Examples
```jldoctest; filter = r"Stacktrace:(\\n \\[[0-9]+\\].*)*"
julia> a = 10^10;
julia> a = Int64(10)^10;
julia> hypot(a, a)
1.4142135623730951e10
Expand Down

0 comments on commit 314271b

Please sign in to comment.