From 61d6de91a6f2b6a9e156e1fa5b0029dce213bb0e Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Thu, 7 Apr 2016 12:23:51 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70d9e61..1b4d7db 100644 --- a/README.md +++ b/README.md @@ -371,11 +371,11 @@ request->send(response); ``` ## Bad Responses -Some responses that are implemented but you should not use as they do not conform to HTTP. -The following two examples will lead to unclean close of the connection and more time wasted +Some responses are implemented, but you should not use them, because they do not conform to HTTP. +The following example will lead to unclean close of the connection and more time wasted than providing the length of the content -### Respond with content using a callback without content length +### Respond with content using a callback without content length to HTTP/1.0 clients ```cpp //This is used as fallback for chunked responses to HTTP/1.0 Clients request->send("text/plain", 0, [](uint8_t *buffer, size_t maxLen, size_t index) -> size_t {