Skip to content

Commit c558083

Browse files
ci(pre-commit): Apply automatic fixes
1 parent c618d98 commit c558083

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ESPAsyncWebServer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ class AsyncWebServerRequest {
194194
AsyncWebServerResponse *_response;
195195
ArDisconnectHandler _onDisconnectfn;
196196

197-
bool _sent = false; // response is sent
198-
bool _paused = false; // request is paused (request continuation)
199-
std::shared_ptr<AsyncWebServerRequest> _this; // shared pointer to this request
197+
bool _sent = false; // response is sent
198+
bool _paused = false; // request is paused (request continuation)
199+
std::shared_ptr<AsyncWebServerRequest> _this; // shared pointer to this request
200200

201201
String _temp;
202202
uint8_t _parseState;
@@ -488,7 +488,7 @@ class AsyncWebServerRequest {
488488
* The middelware chain will continue to be processed until the end, but no response will be sent.
489489
* To resume operations (send the request), the request must be retrieved from the weak pointer and a send() function must be called.
490490
* @warning This function should be called from within the context of a request (in a handler or middleware for example).
491-
* @warning While the request is paused, any network disconnection will cause the request to be deleted.
491+
* @warning While the request is paused, any network disconnection will cause the request to be deleted.
492492
* So it is the responsibility of the user to check the validity of the request pointer (AsyncWebServerRequestPtr) before using it by calling lock() and/or expired().
493493
*/
494494
AsyncWebServerRequestPtr pause();

0 commit comments

Comments
 (0)