Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/rounding.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This results in the following modes:
| `half_expand` | nearest increment | away from zero | 3.5→4, -3.5→-4 |n/a |
| `half_even` | nearest increment | to even | 3.5→4, 4.5→4, | {func}`round` |

For positive values, the behavior of `ceil`/`floor` and `trunc`/`expand` is the same.
For positive values, the behavior of `ceil` is identical to `expand` and the behaviour of `floor` is identical to `trunc`.
The difference is only visible for negative values.

## Supported units
Expand Down
Loading