From 676cd10dbf9deebdee844cc62294ad20abdf2c69 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 15 Jun 2020 08:32:26 +0200 Subject: [PATCH] Fix encoding of @Bean in reference documentation Closes gh-21908 --- .../src/docs/asciidoc/production-ready-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc index 3f731d8a605..b29b82016e3 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc @@ -1879,7 +1879,7 @@ By default, Spring MVC-related metrics are tagged with the following information | Request's URI template prior to variable substitution, if possible (for example, `/api/person/\{id}`) |=== -To add to the default tags, provide one or more `@Bean`s that implement `WebMvcTagsContributor`. +To add to the default tags, provide one or more ``@Bean``s that implement `WebMvcTagsContributor`. To replace the default tags, provide a `@Bean` that implements `WebMvcTagsProvider`. @@ -1913,7 +1913,7 @@ By default, WebFlux-related metrics are tagged with the following information: | Request's URI template prior to variable substitution, if possible (for example, `/api/person/\{id}`) |=== -To add to the default tags, provide one or more `@Bean`s that implement `WebFluxTagsContributor`. +To add to the default tags, provide one or more ``@Bean``s that implement `WebFluxTagsContributor`. To replace the default tags, provide a `@Bean` that implements `WebFluxTagsProvider`.