From 4a2388ed827f4e24abb4ccc54edbefca09ae2e0f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 4 Mar 2026 08:20:11 -1000 Subject: [PATCH 1/2] Update esphome/components/network/util.h Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/components/network/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/network/util.h b/esphome/components/network/util.h index 1dbd53031c..24b982eddd 100644 --- a/esphome/components/network/util.h +++ b/esphome/components/network/util.h @@ -45,7 +45,7 @@ inline bool is_connected() { #endif #ifdef USE_HOST - return true; // Assume its connected + return true; // Assume it's connected #endif return false; } From fb33fb977d5a19bcdc2a89e292e8e1cc1f8d3c9b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 4 Mar 2026 08:20:17 -1000 Subject: [PATCH 2/2] Update esphome/components/network/util.h Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- esphome/components/network/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/network/util.h b/esphome/components/network/util.h index 24b982eddd..c50dff870f 100644 --- a/esphome/components/network/util.h +++ b/esphome/components/network/util.h @@ -20,7 +20,7 @@ namespace esphome::network { // The order of the components is important: WiFi should come after any possible main interfaces (it may be used as -// an AP that use a previous interface for NAT). +// an AP that uses a previous interface for NAT). /// Return whether the node is connected to the network (through wifi, eth, ...) inline bool is_connected() {