From d742814686fc2c8dfbdcb582541155cb8df170ac Mon Sep 17 00:00:00 2001 From: DTrombett <73136330+DTrombett@users.noreply.github.com> Date: Thu, 1 Jul 2021 18:38:52 +0200 Subject: [PATCH] docs(Util): methods removed on the base object (#5990) --- src/util/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Util.js b/src/util/Util.js index 7a56595b7..125c3101f 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -8,7 +8,7 @@ const has = (o, k) => Object.prototype.hasOwnProperty.call(o, k); const isObject = d => typeof d === 'object' && d !== null; /** - * Contains various general-purpose utility methods. These functions are also available on the base `Discord` object. + * Contains various general-purpose utility methods. */ class Util { constructor() {