cleanup: improve javadoc comments

This commit is contained in:
2021-06-03 03:54:18 +02:00
parent f323873b39
commit f9837b4c28
10 changed files with 40 additions and 45 deletions

View File

@ -9,7 +9,7 @@ import java.lang.reflect.Field;
import java.util.StringJoiner;
/**
* A class made for building all sorts of {@link Request}s as nicely as possible.
* A class made for building all sorts of {@link Request Requests} as nicely as possible.
* It works by taking .with[KEY]() functions and then building a specific request at the end.
*/
public class RequestBuilder {
@ -26,7 +26,7 @@ public class RequestBuilder {
private StoneType stoneType;
/**
* Creates a new {@link RequestBuilder} used for building {@link Request}s.
* Creates a new {@link RequestBuilder} used for building {@link Request Requests}.
* @param requestType is the type of Event that the final event will have
*/
public RequestBuilder(RequestType requestType) {