Fix indentation in the README

This commit is contained in:
Andy Wilkinson
2014-10-28 15:27:56 +00:00
parent 44d6dfa2c0
commit 3ac27976ea

View File

@@ -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