From b0c93e8b75db583c2c050f74540c2e545646d027 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Tue, 11 Feb 2020 17:36:31 +0900 Subject: [PATCH] Typo fixes --- src/AutoConnect.cpp | 2 +- src/AutoConnect.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AutoConnect.cpp b/src/AutoConnect.cpp index c5c946c..669f727 100644 --- a/src/AutoConnect.cpp +++ b/src/AutoConnect.cpp @@ -276,7 +276,7 @@ bool AutoConnect::config(AutoConnectConfig& Config) { /** * Configure access point. - * Set up access point with internal AucoConnectConfig parameter corrected + * Set up access point with internal AutoConnectConfig parameter corrected * by Config method. */ bool AutoConnect::_config(void) { diff --git a/src/AutoConnect.h b/src/AutoConnect.h index f0f8a98..1f34f02 100644 --- a/src/AutoConnect.h +++ b/src/AutoConnect.h @@ -309,7 +309,7 @@ class AutoConnect { String _redirectURI; /**< Redirect destination */ String _menuTitle; /**< Title string of the page */ - /** PegeElements of AutoConnect site. */ + /** PageElements of AutoConnect site. */ static const char _CSS_BASE[] PROGMEM; static const char _CSS_UL[] PROGMEM; static const char _CSS_ICON_LOCK[] PROGMEM; @@ -377,7 +377,7 @@ class AutoConnect { String _token_CURRENT_SSID(PageArgument& args); private: - static const String _emptyString; /**< An empty string alloaction **/ + static const String _emptyString; /**< An empty string allocation **/ #if defined(ARDUINO_ARCH_ESP8266) friend ESP8266WebServer;