From 9c9a4f3eabbb6f24277538d28a00afa25ba2839a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 5 May 2026 14:34:27 +0200 Subject: [PATCH] thrdqueue.h: minor language polish in comments --- lib/thrdqueue.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/thrdqueue.h b/lib/thrdqueue.h index 8bcdcee03a..1144bb4185 100644 --- a/lib/thrdqueue.h +++ b/lib/thrdqueue.h @@ -36,14 +36,14 @@ typedef enum { CURL_THRDQ_EV_ITEM_DONE /* an item has been processed and is ready */ } Curl_thrdq_event; -/* Notification callback when "events" happen in the queue. May be - * call from any thread, queue is not locked. */ +/* Notification callback when "events" happen in the queue. May be called from + * any thread, queue is not locked. */ typedef void Curl_thrdq_ev_cb(const struct curl_thrdq *tqueue, Curl_thrdq_event ev, void *user_data); -/* Process a queued item. Maybe call from any thread. Queue is - * not locked. */ +/* Process a queued item. May be called from any thread. Queue is not + * locked. */ typedef void Curl_thrdq_item_process_cb(void *item); /* Free an item. May be called from any thread at any time for an