From 0a093fcde5a4d96acc3870d846d44c0e241d59d1 Mon Sep 17 00:00:00 2001 From: John Johnson III Date: Thu, 19 Mar 2020 08:49:51 -0500 Subject: [PATCH] Fix a couple of small typo's (#567) Fixes a couple of small typo's in the example test docs. --- example_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/example_test.go b/example_test.go index 96449ea..cd1883b 100644 --- a/example_test.go +++ b/example_test.go @@ -23,10 +23,9 @@ var ( // This server application works with a client application running in the // browser. The client application does not explicitly close the websocket. The // only expected close message from the client has the code -// websocket.CloseGoingAway. All other other close messages are likely the +// websocket.CloseGoingAway. All other close messages are likely the // result of an application or protocol error and are logged to aid debugging. func ExampleIsUnexpectedCloseError() { - for { messageType, p, err := c.ReadMessage() if err != nil { @@ -35,11 +34,11 @@ func ExampleIsUnexpectedCloseError() { } return } - processMesage(messageType, p) + processMessage(messageType, p) } } -func processMesage(mt int, p []byte) {} +func processMessage(mt int, p []byte) {} // TestX prevents godoc from showing this entire file in the example. Remove // this function when a second example is added.