From 473e3e1a7be1c73e259a0a3f2ec61a22fe8046f7 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 23 Oct 2017 15:47:42 +0100 Subject: [PATCH] Correct end tag in included source so that it matches opening tag Closes gh-441 --- docs/src/test/java/com/example/restassured/Payload.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test/java/com/example/restassured/Payload.java b/docs/src/test/java/com/example/restassured/Payload.java index 35e8d58b..dca7976f 100644 --- a/docs/src/test/java/com/example/restassured/Payload.java +++ b/docs/src/test/java/com/example/restassured/Payload.java @@ -55,7 +55,7 @@ public class Payload { subsectionWithPath("contact").description("The user's contact details")))) // <1> .when().get("/user/5") .then().assertThat().statusCode(is(200)); - // end::response[] + // end::subsection[] } public void explicitType() throws Exception {