Remove unnecessary brace in websocket documenation

Closes gh-#27339
This commit is contained in:
Georgi Ushev
2021-08-31 10:37:29 +03:00
committed by GitHub
parent cc026fcb8a
commit e5a5f8b20b

View File

@@ -1177,7 +1177,7 @@ We can trace the flow through a simple example. Consider the following example,
@Controller
public class GreetingController {
@MessageMapping("/greeting") {
@MessageMapping("/greeting")
public String handle(String greeting) {
return "[" + getTimestamp() + ": " + greeting;
}