Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 committed Jan 10, 2024
1 parent d001e89 commit e4679ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/common/chef-fan-control-manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ CHIP_ERROR ChefFanControlManager::ReadPercentCurrent(AttributeValueEncoder & aEn
DataModel::Nullable<Percent> percentSetting;
PercentSetting::Get(mEndpoint, percentSetting);

return aEncoder.Encode(ercentSetting.ValueOr(0));
return aEncoder.Encode(percentSetting.ValueOr(0));
}

CHIP_ERROR ChefFanControlManager::ReadSpeedCurrent(AttributeValueEncoder & aEncoder)
Expand Down

0 comments on commit e4679ce

Please sign in to comment.