| author | |
| committer | |
| log | 718ee31e214b28e20fa3dcdbace4e7658c056861 |
| tree | a8897b5c8729ef3df706936647fe2eef462e7b6e |
| parent | 83f773fc64971160c526107da4590c1583eb84cf |
Without this change, the docs are formatted s.t. the text "Edge case rules ordered by precedence:" is appended onto the prior line of text "Underflow: Absolute value of result smaller than 1", instead of getting its own line.1 files changed, 1 insertions(+), 0 deletions(-)
lib/std/math/powi.zig+1| ... | ... | @@ -13,6 +13,7 @@ const testing = std.testing; |
| 13 | 13 | /// Errors: |
| 14 | 14 | /// - Overflow: Integer overflow or Infinity |
| 15 | 15 | /// - Underflow: Absolute value of result smaller than 1 |
| 16 | /// | |
| 16 | 17 | /// Edge case rules ordered by precedence: |
| 17 | 18 | /// - powi(T, x, 0) = 1 unless T is i1, i0, u0 |
| 18 | 19 | /// - powi(T, 0, x) = 0 when x > 0 |