File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hypixel-api-example/src/main/java/net/hypixel/api/example Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static void main(String[] args) {
3535 try {
3636 /*
3737 * We'll be fetching the guild's stats using its ID for this example, but guilds can
38- * also be looked up by their name, or one of their member's Minecraft UUIDs.
38+ * also be looked up by their name, or one of their members' Minecraft UUIDs.
3939 * - HypixelAPI.getGuildByName(String)
4040 * - HypixelAPI.getGuildByPlayer(UUID)
4141 */
@@ -45,7 +45,7 @@ public static void main(String[] args) {
4545 * Here, we store the response from the API.
4646 *
4747 * We call `.get()` at the end so that we can use the reply in the same thread.
48- * The downside is that this is synchronous operation .
48+ * The downside is that this is synchronous, and blocks the thread untill the API responds .
4949 * If this is a problem for you, instead use:
5050 *
5151 * .whenComplete((apiReply, error) -> {
You can’t perform that action at this time.
0 commit comments