From 612036729024e6fedd4efeda635fd949637e6ecb Mon Sep 17 00:00:00 2001 From: yhirose Date: Fri, 13 Feb 2015 22:53:52 -0500 Subject: [PATCH] Fixed documentation. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80afd4e..4f09077 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ int main(void) res.set_content("Hello World!", "text/plain"); }); - svr_.get("/numbers/(\d+)", [&](const auto& req, auto& res) { + svr_.get(R"(/numbers/(\d+))", [&](const auto& req, auto& res) { string numbers = req.matches[1]; res.set_content(numbers, "text/plain"); });