From 0dfd5f6d2cc72b27b2e9c1857b1ffb02d432f347 Mon Sep 17 00:00:00 2001 From: Tomas McGuinness Date: Tue, 2 Dec 2025 16:48:16 +0000 Subject: [PATCH] Fix typo --- .../commands/esp_matter_controller_pairing_command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter_controller/commands/esp_matter_controller_pairing_command.cpp b/components/esp_matter_controller/commands/esp_matter_controller_pairing_command.cpp index 95444ede6..4143c7423 100644 --- a/components/esp_matter_controller/commands/esp_matter_controller_pairing_command.cpp +++ b/components/esp_matter_controller/commands/esp_matter_controller_pairing_command.cpp @@ -106,7 +106,7 @@ void pairing_command::OnICDStayActiveComplete(ScopedNodeId deviceId, uint32_t pr void pairing_command::OnDiscoveredDevice(const Dnssd::CommissionNodeData &nodeData) { auto &controller_instance = esp_matter::controller::matter_controller_client::get_instance(); - // Ignore nodes with closed comissioning window + // Ignore nodes with closed commissioning window VerifyOrReturn(nodeData.commissioningMode != 0); const uint16_t port = nodeData.port; char buf[Inet::IPAddress::kMaxStringLength];