From 6dcfdf72065258d0c7b952f708a7ccf00107d7b5 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Wed, 9 Sep 2015 12:05:26 +0200 Subject: [PATCH] Update getting started documentation to use new class names Closes gh-118 --- docs/src/docs/asciidoc/getting-started.adoc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/src/docs/asciidoc/getting-started.adoc b/docs/src/docs/asciidoc/getting-started.adoc index 8273b296..ed25c8ab 100644 --- a/docs/src/docs/asciidoc/getting-started.adoc +++ b/docs/src/docs/asciidoc/getting-started.adoc @@ -238,10 +238,11 @@ The `RestDocumentation` rule is configured with the output directory into which generated snippets should be written. This output directory should match the snippets directory that you have configured in your `build.gradle` or `pom.xml` file. -The `MockMvc` instance is configured using a `RestDocumentationConfigurer`. An instance -of this class can be obtained from the static `documentationConfiguration()` method on -`org.springframework.restdocs.RestDocumentation`. `RestDocumentationConfigurer` applies -sensible defaults and also provides an API for customizing the configuration. Refer to the +The `MockMvc` instance is configured using a `RestDocumentationMockMvcConfigurer`. An +instance of this class can be obtained from the static `documentationConfiguration()` +method on `org.springframework.restdocs.mockmvc.MockMvcRestDocumentation`. +`RestDocumentationMockMvcConfigurer` applies sensible defaults and also provides an API +for customizing the configuration. Refer to the <> for more information.