From 5c46c496472bc2f9bc487a068f0cc9655a17ad62 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 18 Jul 2018 08:53:54 +0200 Subject: [PATCH] Updated Stubbing and Request Matching (markdown) --- Stubbing-and-Request-Matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stubbing-and-Request-Matching.md b/Stubbing-and-Request-Matching.md index b8add75..3d1847f 100644 --- a/Stubbing-and-Request-Matching.md +++ b/Stubbing-and-Request-Matching.md @@ -361,7 +361,7 @@ server Response.Create() .WithStatusCode(200) .WithHeader("Content-Type", "text/plain") - .WithBody("Hello world! Your path is {{request.path}.") + .WithBody("Hello world! Your path is {{request.path}}.") .WithTransformer() ); ```