Browse Source

Remove unnecessary brace in websocket documenation

Closes gh-#27339
pull/27351/head
Georgi Ushev 4 years ago committed by GitHub
parent
commit
e5a5f8b20b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/docs/asciidoc/web/websocket.adoc

2
src/docs/asciidoc/web/websocket.adoc

@ -1177,7 +1177,7 @@ We can trace the flow through a simple example. Consider the following example, @@ -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;
}

Loading…
Cancel
Save