Skip to content
Open

typo #19

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/client/general/event_queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ As a result, when you implement the [`Dispatch`] trait you need to keep an eye o
you're going to work with, and construct your match accordingly. Having a catch-all `_ => unreachable!()` arm
is here an easy way to ensure you are not ignoring events that you can actually receive.

Another important point no note is that the [`Dispatch`] trait is parameterized by the user data type. This
Another important point to note is that the [`Dispatch`] trait is parameterized by the user data type. This
means that you can provide two different implementations for the same Wayland interface, and the event queue
will invoke one or the other depending on which type of user data was provided when the object was created.

Expand Down