From e5e59cce32e0a660a0884a7e72866cb8e99f9571 Mon Sep 17 00:00:00 2001 From: Jonah Snider Date: Sun, 4 Mar 2018 00:16:12 -0800 Subject: [PATCH] docs(Role): Change 'the this' to this (typo) (#2377) Commit: 8b679913a455ab059b30ded2cd364f874bab7d38 --- src/structures/Role.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/Role.js b/src/structures/Role.js index b370b3f70..d8baaf49d 100644 --- a/src/structures/Role.js +++ b/src/structures/Role.js @@ -181,8 +181,8 @@ class Role { /** * Compares this role's position to another role's. * @param {Role} role Role to compare to this one - * @returns {number} Negative number if the this role's position is lower (other role's is higher), - * positive number if the this one is higher (other's is lower), 0 if equal + * @returns {number} Negative number if this role's position is lower (other role's is higher), + * positive number if this one is higher (other's is lower), 0 if equal */ comparePositionTo(role) { return this.constructor.comparePositions(this, role);