From 18933039552ea9eff8af03c889ebe1eb273c2278 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Atsushi Date: Thu, 31 Oct 2024 19:33:21 +0900 Subject: [PATCH] Fix typo in comment: 'polll' to 'poll' Corrected a typo in the comment block, changing 'polll' to 'poll'. Change-Id: I8f276d8a7f07114b323bf0c79e797e355dad1547 Reviewed-by: David Edmundson --- src/plugins/platforms/wayland/qwaylanddisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/platforms/wayland/qwaylanddisplay.cpp b/src/plugins/platforms/wayland/qwaylanddisplay.cpp index 025b30096f6..572275057d8 100644 --- a/src/plugins/platforms/wayland/qwaylanddisplay.cpp +++ b/src/plugins/platforms/wayland/qwaylanddisplay.cpp @@ -190,7 +190,7 @@ protected: if (fds[0].revents & POLLIN) wl_display_read_events(m_wldisplay); - // The polll was succesfull and the event thread did the wl_display_read_events(). On the next iteration of the loop + // The poll was succesfull and the event thread did the wl_display_read_events(). On the next iteration of the loop // the event sent to the main thread will cause it to dispatch the messages just read, unless the loop exits in which // case we don't care anymore about them. else