mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
fix: typo
This commit is contained in:
parent
fa8001f21d
commit
5c66a944d9
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ pub trait StatefulWidget {
|
||||||
/// Renders the the widget into the buffer using the provided state.
|
/// Renders the the widget into the buffer using the provided state.
|
||||||
///
|
///
|
||||||
/// This method replaces the `render` method with a name that does not conflict with the
|
/// This method replaces the `render` method with a name that does not conflict with the
|
||||||
/// `render` method from the `Widget` trait. (This conflict causes apps to have to specifially
|
/// `render` method from the `Widget` trait. (This conflict causes apps to have to specifically
|
||||||
/// disambiguate the method call when using the `StatefulWidget` trait in situations where both
|
/// disambiguate the method call when using the `StatefulWidget` trait in situations where both
|
||||||
/// traits are in scope.)
|
/// traits are in scope.)
|
||||||
fn render_stateful(self, area: Rect, buf: &mut Buffer, state: &mut Self::State)
|
fn render_stateful(self, area: Rect, buf: &mut Buffer, state: &mut Self::State)
|
||||||
|
|
Loading…
Reference in a new issue