From 8e5151f83dbd2ec22d618adce4896a4e4466e67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 7 Oct 2025 10:49:57 +0300 Subject: [PATCH] docs(rect): fix typo in the Rect::outer function comments (#2123) --- ratatui-core/src/layout/rect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ratatui-core/src/layout/rect.rs b/ratatui-core/src/layout/rect.rs index 0e969344..b0a34d51 100644 --- a/ratatui-core/src/layout/rect.rs +++ b/ratatui-core/src/layout/rect.rs @@ -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. ///