diff --git a/libraries/Zigbee/src/ZigbeeCore.cpp b/libraries/Zigbee/src/ZigbeeCore.cpp index d9477ec1f78..0a3177919da 100644 --- a/libraries/Zigbee/src/ZigbeeCore.cpp +++ b/libraries/Zigbee/src/ZigbeeCore.cpp @@ -316,7 +316,7 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct) { if (!(*it)->bound() || (*it)->epAllowMultipleBinding()) { // Check if the device is already bound bool found = false; - // Gte the list of devices bound to the EP + // Get the list of devices bound to the EP std::list bound_devices = (*it)->getBoundDevices(); for (std::list::iterator device = bound_devices.begin(); device != bound_devices.end(); ++device) { if (((*device)->short_addr == dev_annce_params->device_short_addr) || (memcmp((*device)->ieee_addr, dev_annce_params->ieee_addr, 8) == 0)) {