From 80a929ccc65c03fd751f150145807b32f26d60af Mon Sep 17 00:00:00 2001 From: JerzySpendel Date: Sun, 8 Aug 2021 11:10:21 +0200 Subject: [PATCH] chore: fix typo (#513) --- src/widgets/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/mod.rs b/src/widgets/mod.rs index d617893..4b8476d 100644 --- a/src/widgets/mod.rs +++ b/src/widgets/mod.rs @@ -62,8 +62,8 @@ bitflags! { /// Base requirements for a Widget pub trait Widget { - /// Draws the current state of the widget in the given buffer. That the only method required to - /// implement a custom widget. + /// Draws the current state of the widget in the given buffer. That is the only method required + /// to implement a custom widget. fn render(self, area: Rect, buf: &mut Buffer); }