Skip to content

Commit

Permalink
Fix docstring indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHnt authored Jul 22, 2024
1 parent 16dcd3b commit d3f91fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/intervals/arithmetic/power.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d3f91fa

Please sign in to comment.