diff --git a/packages/collection/src/collection.ts b/packages/collection/src/collection.ts index 911ab1a6b..ea2fb02d6 100644 --- a/packages/collection/src/collection.ts +++ b/packages/collection/src/collection.ts @@ -227,9 +227,9 @@ export class Collection extends Map { /** * Searches for a single item where the given function returns a truthy value. This behaves like * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find | Array.find()}. - * All collections used in Discord.js are mapped using their `id` property, and if you want to find by id you + * All collections used in Discord.js are mapped using their `id` property, and if you want to find by id you * should use the `get` method. See - * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/get | MDN} for details. + * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/get | MDN} for details. * * @param fn - The function to test with (should return boolean) * @param thisArg - Value to use as `this` when executing function