diff --git a/wayland-client/src/event_queue.rs b/wayland-client/src/event_queue.rs index f3878cf89c7..03c119290ee 100644 --- a/wayland-client/src/event_queue.rs +++ b/wayland-client/src/event_queue.rs @@ -249,7 +249,7 @@ impl std::fmt::Debug for QueueEvent { /// In a case where you app is multithreaded and you want to process events in multiple thread, a simple /// pattern is to have one [`EventQueue`] per thread processing Wayland events. /// -/// With this pattern, each thread can use [`EventQueue::blocking_dispatch()`](EventQueue::blocking_dispatch +/// With this pattern, each thread can use [`EventQueue::blocking_dispatch()`] /// on its own event loop, and everything will "Just Work". /// /// ### Single-queue guest library