Skip to content

Commit d4f220d

Browse files
authored
Update with some better grammar and more accesible language
1 parent e7aac1b commit d4f220d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hypixel-api-example/src/main/java/net/hypixel/api/example/GetGuildExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) -> {

0 commit comments

Comments
 (0)