From f057b83419abb02dbc8d0929f22afdb3aa8f129b Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Wed, 23 Oct 2024 12:14:22 +0200 Subject: [PATCH] Fix typo in warning Co-authored-by: Lawrence Mitchell --- cpp/src/worker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/src/worker.cpp b/cpp/src/worker.cpp index ff0ac930..a53b09d8 100644 --- a/cpp/src/worker.cpp +++ b/cpp/src/worker.cpp @@ -167,13 +167,13 @@ Worker::~Worker() if (_progressThread.isRunning()) { ucxx_warn( "The progress thread should be explicitly stopped with `stopProgressThread()` to prevent " - "unintended effects, such as destructor being called from that thread."); + "unintended effects, such as destructors being called from that thread."); stopProgressThreadNoWarn(); } if (_notifier && _notifier->isRunning()) { ucxx_warn( "The notifier thread should be explicitly stopped with `stopNotifierThread()` to prevent " - "unintended effects, such as destructor being called from that thread."); + "unintended effects, such as destructors being called from that thread."); _notifier->stopRequestNotifierThread(); }