diff --git a/ratatui-core/src/layout/rect.rs b/ratatui-core/src/layout/rect.rs index 9dbbeefe..0e969344 100644 --- a/ratatui-core/src/layout/rect.rs +++ b/ratatui-core/src/layout/rect.rs @@ -164,8 +164,7 @@ impl Rect { } } - /// The area of the `Rect`. If the area is larger than the maximum value of `u16`, it will be - /// clamped to `u16::MAX`. + /// The area of the `Rect`. pub const fn area(self) -> u32 { (self.width as u32) * (self.height as u32) }