From 16ad34aa19af64bf178460f0e257909ef1719b54 Mon Sep 17 00:00:00 2001 From: Ken Kwon Date: Wed, 11 Apr 2018 11:32:50 +0900 Subject: [PATCH] Fix typo Closes gh-12825 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 8db9c172e1..2289ac7d14 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -5483,7 +5483,7 @@ The following code shows a typical example: private final RestTemplate restTemplate; - public MyBean(RestTemplateBuilder restTemplateBuilder) { + public MyService(RestTemplateBuilder restTemplateBuilder) { this.restTemplate = restTemplateBuilder.build(); }