From 8fb181f31a90dc9a0b4279243cba8dad3ecf480f Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 1 Jul 2019 11:43:27 -0700 Subject: [PATCH] Escape new '{reference}' elements in asciidoc See gh-17387 --- .../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 8aa642fde6..9145ce31b7 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 @@ -3471,7 +3471,7 @@ The following code shows a typical `@Controller`: // ... } - @MessageMapping("users.{user}.info") + @MessageMapping("users.\{user}.info") Mono getUserInfo(@DestinationVariable String user) { // ... }