From 5d1a7224256c08e62098f3cd4186ca2407a61678 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Tue, 29 Sep 2020 14:40:30 -0300 Subject: [PATCH] Fix formatting issue (#9778) Follow-up #9761 --- src/http/web_socket.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http/web_socket.cr b/src/http/web_socket.cr index 7950d11422a0..1770c42e9d8a 100644 --- a/src/http/web_socket.cr +++ b/src/http/web_socket.cr @@ -118,11 +118,11 @@ class HTTP::WebSocket # Continuously receives messages and calls previously set callbacks until the websocket is closed. # Ping and pong messages are automatically handled. - # + # # ``` # # Open websocket connection # ws = WebSocket.new(uri) - # + # # # Set callback # ws.on_message do |msg| # ws.send "response"