summaryrefslogtreecommitdiffstats
path: root/apps/src/http-server/http-server/http_server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'apps/src/http-server/http-server/http_server.cc')
-rw-r--r--apps/src/http-server/http-server/http_server.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/src/http-server/http-server/http_server.cc b/apps/src/http-server/http-server/http_server.cc
index 911656f7a..8c8bea60a 100644
--- a/apps/src/http-server/http-server/http_server.cc
+++ b/apps/src/http-server/http-server/http_server.cc
@@ -226,8 +226,8 @@ void HttpServer::read_request_and_content(std::shared_ptr<socket_type> socket) {
if (!ec) {
// request->streambuf.size() is not necessarily the same as
// bytes_transferred, from Asio-docs: "After a successful
- //async_read_until operation, the streambuf may contain additional
- //data beyond the delimiter" The chosen solution is to extract lines
+ // async_read_until operation, the streambuf may contain additional
+ // data beyond the delimiter" The chosen solution is to extract lines
// from the stream directly when parsing the header. What is left of
// the streambuf (maybe some bytes of the content) is appended to in
// the async_read-function below (for retrieving content).