diff --git a/Proxying.md b/Proxying.md index 71bd154..9cfb639 100644 --- a/Proxying.md +++ b/Proxying.md @@ -7,11 +7,11 @@ The following code will proxy all GET requests made to http://:/othe server .Given( Request.Create() - .WithPath("/other/service") + .WithPath("/google") ) .RespondWith( Response.Create() - .WithProxy("http://otherhost.com/approot") + .WithProxy("http://www.google.com") ); ```