File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ server.onNotFound([](){
133
133
134
134
#### Does this library work with ESPAsyncWebServer?
135
135
136
- Yes! From v2.3.0 you can use the library asyncronously by adding ` #define ESPALEXA_ASYNC ` before ` #include <Espalexa.h> `
136
+ Yes! From v2.3.0 you can use the library asynchronously by adding ` #define ESPALEXA_ASYNC ` before ` #include <Espalexa.h> `
137
137
See the ` EspalexaWithAsyncWebServer ` example.
138
138
` ESPAsyncWebServer ` and its dependencies must be manually installed.
139
139
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ class Espalexa {
443
443
if (req.indexOf (" api" ) <0 ) return false ; // return if not an API call
444
444
EA_DEBUGLN (" ok" );
445
445
446
- if (body.indexOf (" devicetype" ) > 0 ) // client wants a hue api username, we dont care and give static
446
+ if (body.indexOf (" devicetype" ) > 0 ) // client wants a hue api username, we don't care and give static
447
447
{
448
448
EA_DEBUGLN (" devType" );
449
449
body = " " ;
@@ -550,7 +550,7 @@ class Espalexa {
550
550
return true ;
551
551
}
552
552
553
- // we dont care about other api commands at this time and send empty JSON
553
+ // we don't care about other api commands at this time and send empty JSON
554
554
server->send (200 , " application/json" , " {}" );
555
555
return true ;
556
556
}
You can’t perform that action at this time.
0 commit comments