From 1a497cdac3b9b503cf86a35dfd6b7073b8f0ea69 Mon Sep 17 00:00:00 2001 From: Jeff Tung <100387939+jtung-apple@users.noreply.github.com> Date: Thu, 1 Jun 2023 12:24:40 -0700 Subject: [PATCH] Update src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h Co-authored-by: Boris Zbarsky --- src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h b/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h index ee7ee97d6c254b..05ac5e64f3e8d2 100644 --- a/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h +++ b/src/darwin/Framework/CHIP/MTRAsyncCallbackWorkQueue.h @@ -99,7 +99,7 @@ typedef void (^MTRAsyncCallbackDuplicateCheckHandler)(id opaqueItemData, BOOL * // Before creating a work item, a client may call this method to check with existing work items that the new potential work item // data is not a duplicate request. The work queue will then look for all work items matching the duplicate type ID, and call their -// duplicateCheckHandler. +// duplicateCheckHandler with the provided opaqueWorkItemData. // // Returns YES if any item's duplicateCheckHandler returns a match. - (BOOL)isDuplicateForTypeID:(NSUInteger)opaqueDuplicateTypeID workItemData:(id)opaqueWorkItemData;