diff --git a/src/main/java/me/shivzee/util/Account.java b/src/main/java/me/shivzee/util/Account.java index 85bc806..fa02686 100644 --- a/src/main/java/me/shivzee/util/Account.java +++ b/src/main/java/me/shivzee/util/Account.java @@ -86,7 +86,7 @@ public String getUpdatedAt() { /** * Get the account creation Date/Time in ZonedDateTime format - * @return the date at which the message was sent/created/received + * @return the date at which the account was created */ public ZonedDateTime getCreatedDateTime() throws DateTimeParserException { return parseToDefaultTimeZone(createdAt, "yyyy-MM-dd'T'HH:mm:ss'+00:00'"); @@ -94,7 +94,7 @@ public ZonedDateTime getCreatedDateTime() throws DateTimeParserException { /** * Get the account update Date/Time in ZonedDateTime format - * @return the date on which the message was updated (markAsRead fires the update event) + * @return the date on which the account was updated * @see me.shivzee.callbacks.EventListener */ public ZonedDateTime getUpdatedDateTime() throws DateTimeParserException {