docs(Util): methods removed on the base object (#5990)

This commit is contained in:
DTrombett
2021-07-01 18:38:52 +02:00
committed by GitHub
parent d078dce2f8
commit d742814686

View File

@@ -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() {