diff --git a/src/intervals/arithmetic/power.jl b/src/intervals/arithmetic/power.jl index 46dd4f79..8a1addb4 100644 --- a/src/intervals/arithmetic/power.jl +++ b/src/intervals/arithmetic/power.jl @@ -12,11 +12,11 @@ Power mode type for `^`. Available mode types: - `:fast` (default): `x ^ y` is semantically equivalent to `fastpow(x, y)`, -unless `isthininteger(y)` is true in which case it is semantically equivalent to -`fastpown(x, sup(y))`. + unless `isthininteger(y)` is true in which case it is semantically + equivalent to `fastpown(x, sup(y))`. - `:slow`: `x ^ y` is semantically equivalent to `pow(x, y)`, unless -`isthininteger(y)` is true in which case it is semantically equivalent to -`pown(x, sup(y))`. + `isthininteger(y)` is true in which case it is semantically equivalent to + `pown(x, sup(y))`. """ struct PowerMode{T} end