From 3ac27976ea33d3f3bcf145a7046314a1b6780f0e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 28 Oct 2014 15:27:56 +0000 Subject: [PATCH] Fix indentation in the README --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 28035bce..4a1aa178 100644 --- a/README.md +++ b/README.md @@ -75,15 +75,15 @@ documentation snippets: ```java @Before - public void setUp() { - this.mockMvc = MockMvcBuilders - .webAppContextSetup(this.context) - .apply(new RestDocumentationConfiguration() - .withScheme("https") - .withHost("localhost") - .withPort(8443)) - .build(); - } +public void setUp() { + this.mockMvc = MockMvcBuilders + .webAppContextSetup(this.context) + .apply(new RestDocumentationConfiguration() + .withScheme("https") + .withHost("localhost") + .withPort(8443)) + .build(); +} ``` The default values are `http`, `localhost`, and `8080`. You can omit the above