From 6a2267cb97b8d90108e1fd071797110950406cf6 Mon Sep 17 00:00:00 2001 From: Kane York Date: Fri, 15 Sep 2017 12:26:10 -0700 Subject: [PATCH] Fix documentation. --- socketserver/server/commands.go | 1 - 1 file changed, 1 deletion(-) diff --git a/socketserver/server/commands.go b/socketserver/server/commands.go index 7e7d490e..86b1649a 100644 --- a/socketserver/server/commands.go +++ b/socketserver/server/commands.go @@ -431,7 +431,6 @@ var bunchGroup singleflight.Group // C2SHandleBunchedCommand handles C2S Commands such as `get_link`. // It makes a request to the backend server for the data, but any other requests coming in while the first is pending also get the responses from the first one. -// Additionally, results are cached. func C2SHandleBunchedCommand(conn *websocket.Conn, client *ClientInfo, msg ClientMessage) (rmsg ClientMessage, err error) { key := fmt.Sprintf("%s:%s", msg.Command, msg.origArguments)