From 2a7e851f0fe763068e1c2fee98dc20cc76d51f8d Mon Sep 17 00:00:00 2001 From: Jeff Tung <100387939+jtung-apple@users.noreply.github.com> Date: Thu, 1 Jun 2023 12:24:11 -0700 Subject: [PATCH] Update src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h Co-authored-by: Boris Zbarsky --- src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h b/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h index 710b2e04978e5e..ee7ee97d6c254b 100644 --- a/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h +++ b/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h @@ -42,8 +42,8 @@ typedef void (^MTRAsyncCallbackReadyHandler)(id context, NSUInteger retryCount); // after the one that was dropped. typedef void (^MTRAsyncCallbackBatchingHandler)(id opaqueDataCurrent, id opaqueDataNext, BOOL * fullyMerged); -// The duplicate check handler is called by the work queue when the client wishes to verify if a work item is a duplicate of an -// existing one, so that the client can decide to not enqueue the new duplicate. The work queue will +// The duplicate check handler is called by the work queue when the client wishes to check whether a work item is a duplicate of an +// existing one, so that the client can decide to not enqueue the new duplicate. typedef void (^MTRAsyncCallbackDuplicateCheckHandler)(id opaqueItemData, BOOL * isDuplicate); // MTRAsyncCallbackQueue high level description