Skip to content

Commit 5717cf4

Browse files
Apply suggestions from code review
Co-authored-by: Nivi Sarkar <55898241+nivi-apple@users.noreply.github.com>
1 parent 043bd33 commit 5717cf4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/darwin/Framework/CHIP/ServerEndpoint/MTRServerAttribute.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ MTR_AVAILABLE(ios(17.6), macos(14.6), watchos(10.6), tvos(17.6))
4141
* Will fail if the attribute ID is not valid per the Matter specification or
4242
* the attribute value is not a valid data-value.
4343
*
44-
* requiredPrivilege is the privilege required to read the attribute. This
44+
* requiredPrivilege is the privilege required to read the attribute. This
4545
* initializer may fail if the provided attributeID is a global attribute and
4646
* the provided requiredPrivilege value is not correct for that attribute ID.
4747
*/
@@ -58,7 +58,7 @@ MTR_AVAILABLE(ios(17.6), macos(14.6), watchos(10.6), tvos(17.6))
5858
/**
5959
* Create an attribute description for a FeatureMap attribute with the provided
6060
* value (expected to be an unsigned integer representing the value of the
61-
* bitmap). This will automatically set requiredPrivilege to the right value
61+
* bitmap). This will automatically set requiredPrivilege to the right value
6262
* for FeatureMap.
6363
*/
6464
+ (MTRServerAttribute *)newFeatureMapAttributeWithInitialValue:(NSNumber *)value;

src/darwin/Framework/CHIP/ServerEndpoint/MTRServerAttribute.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ - (nullable instancetype)initWithAttributeID:(NSNumber *)attributeID value:(NSDi
9595
_writable = writable;
9696
_parentCluster = app::ConcreteClusterPath(kInvalidEndpointId, kInvalidClusterId);
9797

98-
// now store the value and its serialization. This will also check that the
98+
// Now store the value and its serialization. This will also check that the
9999
// value is serializable to TLV.
100100
if ([self setValueInternal:value logIfNotAssociated:NO] == NO) {
101101
return nil;

0 commit comments

Comments
 (0)