Fix an indent issue.

This commit is contained in:
Chunting Gu
2019-06-26 22:47:20 +08:00
committed by GitHub
parent 899a77114f
commit 03af40c0cb
+1 -1
View File
@@ -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());
}