io/input: fix docs for Router.Queue

The method no longer returns anything, and thus does not actually report
whether any events matched a handler.

Signed-off-by: Chris Waldon <christopher.waldon.dev@gmail.com>
This commit is contained in:
Chris Waldon
2024-01-17 13:01:42 -05:00
committed by Elias Naur
parent 5a843bee61
commit 95ca7b5b59
+1 -1
View File
@@ -380,7 +380,7 @@ func (q *Router) Frame(frame *op.Ops) {
q.collapseState(len(q.changes) - 1)
}
// Queue events and report whether at least one event matched a handler.
// Queue events to be routed.
func (q *Router) Queue(events ...event.Event) {
for _, e := range events {
se, system := e.(SystemEvent)