From 34b18d3bb67f4bdbf87e5e822d6c34065c11ab3c Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 31 May 2025 23:43:45 -0500 Subject: [PATCH] feat: improve grammar --- src/content/posts/software/multithreading-a-gui.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/posts/software/multithreading-a-gui.mdx b/src/content/posts/software/multithreading-a-gui.mdx index 73d60ed..da957c0 100644 --- a/src/content/posts/software/multithreading-a-gui.mdx +++ b/src/content/posts/software/multithreading-a-gui.mdx @@ -121,7 +121,7 @@ void MainWindow::receiveAutonomy( } ``` -Elegantly, registering a signal/slot with `Qt::QueuedConnection` does *all of the hard work*: +Elegantly, registering a signal/slot with `Qt::QueuedConnection` does all of the hard work: - Queueing messages in the target thread's loop - Actual slot execution happens in the GUI thread