From ab33fb8eda45f9a23587465d787a70a309c67ec4 Mon Sep 17 00:00:00 2001 From: Ryan Burleson <26235793+rbxb@users.noreply.github.com> Date: Tue, 7 May 2024 14:24:02 -0500 Subject: [PATCH] fix doc typo in application.rs (#3676) --- src/application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application.rs b/src/application.rs index 1d318d2167..118ba6e528 100644 --- a/src/application.rs +++ b/src/application.rs @@ -190,7 +190,7 @@ pub trait ApplicationHandler { /// Emitted when the event loop is being shut down. /// /// This is irreversible - if this method is called, it is guaranteed that the event loop - /// will exist right after. + /// will exit right after. fn exiting(&mut self, event_loop: &ActiveEventLoop) { let _ = event_loop; }