From 784847697680383968848b1aff96f8031c440f3a Mon Sep 17 00:00:00 2001 From: shivzee Date: Thu, 20 Jun 2024 20:56:25 +0530 Subject: [PATCH] Fix docs --- src/main/java/me/shivzee/util/Account.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {