fix doc typo in application.rs (#3676)

This commit is contained in:
Ryan Burleson
2024-05-07 14:24:02 -05:00
committed by Kirill Chibisov
parent dee7a405fc
commit c4a8e9321d

View File

@@ -190,7 +190,7 @@ pub trait ApplicationHandler<T: 'static = ()> {
/// 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;
}