diff --git a/src/event_loop.rs b/src/event_loop.rs index 13e7488e80..6dfa96b1e1 100644 --- a/src/event_loop.rs +++ b/src/event_loop.rs @@ -211,9 +211,6 @@ impl EventLoop { /// Runs the event loop in the calling thread and calls the given `event_handler` closure /// to dispatch any pending events. /// - /// Since the closure is `'static`, it must be a `move` closure if it needs to - /// access any data from the calling context. - /// /// See the [`set_control_flow()`] docs on how to change the event loop's behavior. /// /// ## Platform-specific