Skip to content

Commit 4b7e7ef

Browse files
authored
Update abs2 function documentation
Closes #737
1 parent 1432c6a commit 4b7e7ef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/intervals/arithmetic/absmax.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@ Base.abs(x::Complex{<:Interval}) = hypot(real(x), imag(x))
2121
abs2(x::BareInterval)
2222
abs2(x::Interval)
2323
24-
Implement the square absolute value.
25-
26-
!!! note
27-
This function calls `^` internally, hence it depends on
28-
`IntervalArithmetic.power_mode()`.
24+
Implement the square absolute value. Its behaviour depends on the current [`PowerMode`](@ref).
2925
"""
3026
Base.abs2(x::BareInterval) = _select_pown(x, 2) # not in the IEEE Standard 1788-2015
3127

0 commit comments

Comments
 (0)