From 373ef850792eb2acf3137cf17f5d864f150b5e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Sch=C3=B6neck?= Date: Tue, 10 Jan 2017 00:12:48 +0100 Subject: [PATCH] Close verbatim block properly (#146) Add missing backtick after RestTemplate in order to not have this blocker huger as intended. --- docs/src/main/asciidoc/spring-cloud-commons.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-commons.adoc b/docs/src/main/asciidoc/spring-cloud-commons.adoc index b8e4c6f9..73a8c438 100644 --- a/docs/src/main/asciidoc/spring-cloud-commons.adoc +++ b/docs/src/main/asciidoc/spring-cloud-commons.adoc @@ -376,7 +376,7 @@ name. === Multiple RestTemplate objects If you want a `RestTemplate` that is not load balanced, create a `RestTemplate` -bean and inject it as normal. To access the load balanced `RestTemplate use +bean and inject it as normal. To access the load balanced `RestTemplate` use the `@LoadBalanced` qualifier when you create your `@Bean`. IMPORTANT: Notice the `@Primary` annotation on the plain `RestTemplate` declaration in the example below, to disambiguate the unqualified `@Autowired` injection.