diff --git a/README.md b/README.md index 64b30fb..c2de74b 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ var client = new RestClient($"http://localhost:{TestPort}/"); var requestHandlers = new List() { new MockHttpHandler("/data", "GET", (req, rsp, prm) => "Get"), - new MockHttpHandler("/data", "POST", (req, rsp, prm) => "Post"). + new MockHttpHandler("/data", "POST", (req, rsp, prm) => "Post"), new MockHttpHandler("/data-multi", "GET,POST", (req, rsp, prm) => "Get/Post") }; @@ -277,4 +277,4 @@ using (new MockServer(TestPort, "xml/{category}/{id}", (req, rsp, prm) => { var result = client.Execute(new RestRequest("xml/horror/12345/", Method.POST)); //"horror - 12345" } -``` \ No newline at end of file +```