Skip to content

Commit

Permalink
chore: fix typo in doc comment (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun authored Mar 12, 2024
1 parent c979e6f commit 966cf2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion simple-async/src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl<B: Backend> Tui<B> {
/// [`Draw`] the terminal interface by [`rendering`] the widgets.
///
/// [`Draw`]: ratatui::Terminal::draw
/// [`rendering`]: crate::ui:render
/// [`rendering`]: crate::ui::render
pub fn draw(&mut self, app: &mut App) -> AppResult<()> {
self.terminal.draw(|frame| ui::render(app, frame))?;
Ok(())
Expand Down
2 changes: 1 addition & 1 deletion simple/src/tui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl<B: Backend> Tui<B> {
/// [`Draw`] the terminal interface by [`rendering`] the widgets.
///
/// [`Draw`]: ratatui::Terminal::draw
/// [`rendering`]: crate::ui:render
/// [`rendering`]: crate::ui::render
pub fn draw(&mut self, app: &mut App) -> AppResult<()> {
self.terminal.draw(|frame| ui::render(app, frame))?;
Ok(())
Expand Down

0 comments on commit 966cf2e

Please sign in to comment.