Skip to content

Commit

Permalink
style(example): update panic message in minimal template (ratatui#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun authored and joshka committed Oct 14, 2024
1 parent cb16eb5 commit b30e698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/minimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn main() {
loop {
terminal
.draw(|frame: &mut Frame| frame.render_widget(Text::raw("Hello World!"), frame.area()))
.expect("Failed to draw");
.expect("failed to draw frame");
if matches!(event::read().expect("failed to read event"), Event::Key(_)) {
break;
}
Expand Down

0 comments on commit b30e698

Please sign in to comment.