docs(rect): fix typo in the Rect::outer function comments (#2123)

This commit is contained in:
Orhun Parmaksız
2025-10-07 10:49:57 +03:00
committed by GitHub
parent f8b0594363
commit 8e5151f83d

View File

@@ -224,7 +224,7 @@ impl Rect {
/// Returns a new `Rect` outside the current one, with the given margin applied on each side.
///
/// If the margin causes the `Rect`'s bounds to outsdie the range of a `u16`, the `Rect` will
/// If the margin causes the `Rect`'s bounds to be outside the range of a `u16`, the `Rect` will
/// be truncated to keep the bounds within `u16`. This will cause the size of the `Rect` to
/// change.
///