@@ -57,17 +57,17 @@ public interface Economy {
5757 int fractionalDigits ();
5858
5959 /**
60- * Format amount into a human readable String This provides translation into
60+ * Format amount into a human- readable String This provides translation into
6161 * economy specific formatting to improve consistency between plugins.
6262 *
6363 * @param amount to format
64- * @return Human readable string describing amount
64+ * @return Human- readable string describing amount
6565 */
6666 String format (double amount );
6767
6868 /**
6969 * Returns the name of the currency in plural form.
70- * If the economy being used does not support currency names then an empty string will be returned.
70+ * If the economy being used does not support currency names, then an empty string will be returned.
7171 *
7272 * @return name of the currency (plural)
7373 */
@@ -76,7 +76,7 @@ public interface Economy {
7676
7777 /**
7878 * Returns the name of the currency in singular form.
79- * If the economy being used does not support currency names then an empty string will be returned.
79+ * If the economy being used does not support currency names, then an empty string will be returned.
8080 *
8181 * @return name of the currency (singular)
8282 */
@@ -90,9 +90,9 @@ public interface Economy {
9090 boolean hasAccount (String playerName );
9191
9292 /**
93- * Checks if this player has an account on the server yet
94- * This will always return true if the player has joined the server at least once
95- * as all major economy plugins auto-generate a player account when the player joins the server
93+ * Checks if this player has an account on the server, yet.
94+ * This will always return true if the player has joined the server at least once
95+ * as all major economy plugins auto-generate a player account when the player joins the server.
9696 *
9797 * @param player to check
9898 * @return if the player has an account
@@ -106,9 +106,9 @@ public interface Economy {
106106 boolean hasAccount (String playerName , @ Nullable String worldName );
107107
108108 /**
109- * Checks if this player has an account on the server yet on the given world
109+ * Checks if this player has an account on the server yet on the given world.
110110 * This will always return true if the player has joined the server at least once
111- * as all major economy plugins auto-generate a player account when the player joins the server
111+ * as all major economy plugins auto-generate a player account when the player joins the server.
112112 *
113113 * @param player to check in the world
114114 * @param worldName world-specific account
@@ -138,7 +138,7 @@ public interface Economy {
138138
139139 /**
140140 * Gets balance of a player on the specified world.
141- * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.
141+ * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this, the global balance will be returned.
142142 *
143143 * @param player to check
144144 * @param world name of the world
@@ -169,7 +169,7 @@ public interface Economy {
169169
170170 /**
171171 * Checks if the player account has the amount in a given world - DO NOT USE NEGATIVE AMOUNTS
172- * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.
172+ * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this, the global balance will be returned.
173173 *
174174 * @param player to check
175175 * @param worldName to check with
@@ -201,7 +201,7 @@ public interface Economy {
201201
202202 /**
203203 * Withdraw an amount from a player on a given world - DO NOT USE NEGATIVE AMOUNTS
204- * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.
204+ * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this, the global balance will be returned.
205205 *
206206 * @param player to withdraw from
207207 * @param worldName - name of the world
@@ -233,7 +233,7 @@ public interface Economy {
233233
234234 /**
235235 * Deposit an amount to a player - DO NOT USE NEGATIVE AMOUNTS
236- * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this the global balance will be returned.
236+ * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this, the global balance will be returned.
237237 *
238238 * @param player to deposit to
239239 * @param worldName name of the world
@@ -359,7 +359,7 @@ public interface Economy {
359359
360360 /**
361361 * Attempts to create a player account for the given player on the specified world
362- * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this then false will always be returned.
362+ * IMPLEMENTATION SPECIFIC - if an economy plugin does not support this, then false will always be returned.
363363 *
364364 * @param player OfflinePlayer
365365 * @param worldName String name of the world
0 commit comments