Skip to content

Commit 03558f4

Browse files
joonhaengHeoaustina-csa
authored andcommitted
Fix comments to right variable (project-chip#33939)
1 parent 71c130e commit 03558f4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/app/ClusterStateCache.h

-2
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ class ClusterStateCacheT : protected ReadClient::Callback
102102
* @param [in] callback the derived callback which inherit from ReadClient::Callback
103103
* @param [in] highestReceivedEventNumber optional highest received event number, if cache receive the events with the number
104104
* less than or equal to this value, skip those events
105-
* @param [in] cacheData boolean to decide whether this cache would store attribute/event data/status,
106-
* the default is true.
107105
*/
108106
ClusterStateCacheT(Callback & callback, Optional<EventNumber> highestReceivedEventNumber = Optional<EventNumber>::Missing()) :
109107
mCallback(callback), mBufferedReader(*this)

src/app/CommandSender.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class CommandSender final : public Messaging::ExchangeDelegate
136136
* The CommandSender object MUST continue to exist after this call is completed. The application shall wait until it
137137
* receives an OnDone call to destroy the object.
138138
*
139-
* @param[in] apCommandSender The command sender object that initiated the command transaction.
139+
* @param[in] commandSender The command sender object that initiated the command transaction.
140140
* @param[in] aResponseData Information pertaining to the response.
141141
*/
142142
virtual void OnResponse(CommandSender * commandSender, const ResponseData & aResponseData) {}
@@ -149,7 +149,7 @@ class CommandSender final : public Messaging::ExchangeDelegate
149149
* The CommandSender object MUST continue to exist after this call is completed. The application shall wait until it
150150
* receives an OnDone call to destroy the object.
151151
*
152-
* @param apCommandSender The CommandSender object that initiated the transaction.
152+
* @param commandSender The CommandSender object that initiated the transaction.
153153
* @param aNoResponseData Details about the request without a response.
154154
*/
155155
virtual void OnNoResponse(CommandSender * commandSender, const NoResponseData & aNoResponseData) {}

src/controller/CHIPDeviceController.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ class DLL_EXPORT DeviceController : public AbstractDnssdDiscoveryController
385385
* @param[in] noc NOC in CHIP certificate format.
386386
* @param[in] icac ICAC in CHIP certificate format. If no icac is present, an empty
387387
* ByteSpan should be passed.
388-
* @param[in] externalOperationalKeypair External operational keypair. If null, use keypair in OperationalKeystore.
388+
* @param[in] operationalKeypair External operational keypair. If null, use keypair in OperationalKeystore.
389389
* @param[in] operationalKeypairExternalOwned If true, external operational keypair must outlive the fabric.
390390
* If false, the keypair is copied and owned in heap of a FabricInfo.
391391
*

0 commit comments

Comments
 (0)