Skip to content

Commit

Permalink
Merge pull request TooTallNate#1200 from antonilol/patch-1
Browse files Browse the repository at this point in the history
mini comment error
  • Loading branch information
PhilipRoman authored Nov 20, 2021
2 parents bcfc967 + 118b933 commit cad989d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/example/ExampleClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void onMessage(String message) {

@Override
public void onClose(int code, String reason, boolean remote) {
// The codecodes are documented in class org.java_websocket.framing.CloseFrame
// The close codes are documented in class org.java_websocket.framing.CloseFrame
System.out.println(
"Connection closed by " + (remote ? "remote peer" : "us") + " Code: " + code + " Reason: "
+ reason);
Expand All @@ -80,4 +80,4 @@ public static void main(String[] args) throws URISyntaxException {
c.connect();
}

}
}

0 comments on commit cad989d

Please sign in to comment.