From 03af40c0cb6e61953447d85b9bdce49a8d04a747 Mon Sep 17 00:00:00 2001 From: Chunting Gu Date: Wed, 26 Jun 2019 22:47:20 +0800 Subject: [PATCH] Fix an indent issue. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37c3249..a98b0b3 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ The first two operations are implemented by `BookListView` deriving from `webcc: ```cpp class BookListView : public webcc::View { public: -webcc::ResponsePtr Handle(webcc::RequestPtr request) override { + webcc::ResponsePtr Handle(webcc::RequestPtr request) override { if (request->method() == "GET") { return Get(request->query()); }