Various code simplification/fixes and a lot of typo/grammar fixes (may brake some stuff)

This commit is contained in:
2023-06-20 00:15:46 +02:00
parent c984b63cee
commit 5edd8cdfec
151 changed files with 909 additions and 983 deletions

View File

@@ -1,7 +1,7 @@
package fr.pandacube.lib.ws.payloads;
/**
* Payload used by the client to login to key-protected websocket endpoint.
* Payload used by the client to log in to key-protected websocket endpoint.
*/
public class LoginPayload extends Payload {
/**

View File

@@ -1,7 +1,7 @@
package fr.pandacube.lib.ws.payloads;
/**
* Payload used by the server in inform the client the login was successfull.
* Payload used by the server in inform the client the login was successful.
*/
public class LoginSucceedPayload extends Payload {
}

View File

@@ -10,7 +10,7 @@ public class MessagePayload extends Payload {
public String message;
/**
* Initialite a new MessagePayload with the provided message.
* Initialize a new MessagePayload with the provided message.
* @param message the message.
*/
public MessagePayload(String message) {