From 4f237af81332f4e73c8cba59856bbd1314b82908 Mon Sep 17 00:00:00 2001
From: yhirose <yuji.hirose.bug@gmail.com>
Date: Tue, 23 Jul 2019 08:20:01 -0400
Subject: [PATCH] Update README

---
 README.md | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/README.md b/README.md
index f19e0aa..77b587b 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ int main(void)
     });
 
     svr.Get("/stop", [&](const Request& req, Response& res) {
-      svr.stop();
+        svr.stop();
     });
 
     svr.listen("localhost", 1234);
@@ -130,15 +130,6 @@ res = cli.Post("/post", "text", "text/plain");
 res = cli.Post("/person", "name=john1&note=coder", "application/x-www-form-urlencoded");
 ```
 
-### POST with HTTP headers
-
-```c++
-  httplib::Headers headers = {
-    { "Content-Length", "5" }
-  };
-  auto res = cli.Post("/hi", headers, "hello", "text/plain");
-```
-
 ### POST with parameters
 
 ```c++