From 26ff04d963c45c0c28df15b58a8e28437c24d8d2 Mon Sep 17 00:00:00 2001 From: Nicu Hodos Date: Sat, 5 Oct 2024 13:55:55 +0200 Subject: [PATCH] fix typo --- library.json | 2 +- src/wifi.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library.json b/library.json index 840aaca..97e029a 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Wifi", - "version": "2.0.0", + "version": "2.0.1", "description": "Helper classes for handling wifi connectiviy and OTA", "repository": { diff --git a/src/wifi.h b/src/wifi.h index 0682aba..07b92f9 100644 --- a/src/wifi.h +++ b/src/wifi.h @@ -12,7 +12,7 @@ namespace Wifi { Task tConnect(1 * TASK_MINUTE, TASK_FOREVER, [] { if (WiFi.status() != WL_CONNECTED) { - Serial.println("Connecting to WiFi netowrk..."); + Serial.println("Connecting to WiFi network..."); WiFi.forceSleepWake(); WiFi.begin(credentials.ssid, credentials.password); }