Skip to content

Commit 336d99e

Browse files
authored
feat(matter): commentaries review and fixes
1 parent 214efe7 commit 336d99e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Matter/src/MatterEndpoints/MatterTemperatureSensor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class MatterTemperatureSensor : public MatterEndPoint {
4444
double getTemperatureCelsius() { // returns the reported temperature in Celcius
4545
return (double)rawTemperature / 100.0;
4646
}
47-
void operator=(double temperatureCelcius) { // sets the reported temperature in Celcius{
47+
void operator=(double temperatureCelcius) { // sets the reported temperature in Celcius
4848
int16_t rawValue = static_cast<int16_t>(temperatureCelcius * 100.0f);
4949
setRawTemperature(rawValue);
5050
}

0 commit comments

Comments
 (0)