Escape new '{reference}' elements in asciidoc

See gh-17387
This commit is contained in:
Phillip Webb
2019-07-01 11:43:27 -07:00
parent f20b100a25
commit 8fb181f31a

View File

@@ -3471,7 +3471,7 @@ The following code shows a typical `@Controller`:
// ...
}
@MessageMapping("users.{user}.info")
@MessageMapping("users.\{user}.info")
Mono<ChatUserInfo> getUserInfo(@DestinationVariable String user) {
// ...
}