diff --git a/src/game_over.rs b/src/game_over.rs index 0e2f434..85bd921 100644 --- a/src/game_over.rs +++ b/src/game_over.rs @@ -31,7 +31,7 @@ pub fn draw(state: &State, _engine: &EngineContext<'_>) { ui.with_layout(Layout::top_down_justified(Align::Center), |ui| { ui.heading( RichText::new( - "The poor spirit lost all their energy and starve to death" + "The poor spirit lost all their energy and starved to death" ) .color(WHITE) .strong() @@ -43,7 +43,7 @@ pub fn draw(state: &State, _engine: &EngineContext<'_>) { .size(30.0) ); ui.label( - RichText::new("\n\n\npress enter for restart") + RichText::new("\n\n\npress enter to restart") .color(WHITE) .size(30.0) );