From ab82cafcde0ee259a32ef14303c1b4a64dea8fae Mon Sep 17 00:00:00 2001 From: Vlad Frangu Date: Sun, 16 May 2021 00:25:06 +0300 Subject: [PATCH] docs: correct casing of `object` -> `Object` in AuditLogChange (#5636) --- src/structures/GuildAuditLogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/GuildAuditLogs.js b/src/structures/GuildAuditLogs.js index cdb1bfad33a2..9d15dedca60e 100644 --- a/src/structures/GuildAuditLogs.js +++ b/src/structures/GuildAuditLogs.js @@ -329,7 +329,7 @@ class GuildAuditLogsEntry { /** * An entry in the audit log representing a specific change. - * @typedef {object} AuditLogChange + * @typedef {Object} AuditLogChange * @property {string} key The property that was changed, e.g. `nick` for nickname changes * @property {*} [old] The old value of the change, e.g. for nicknames, the old nickname * @property {*} [new] The new value of the change, e.g. for nicknames, the new nickname