From 40324574ebea9894cadcc967e0db0e4e21d62768 Mon Sep 17 00:00:00 2001 From: Suneet Tipirneni <77477100+suneettipirneni@users.noreply.github.com> Date: Mon, 29 Aug 2022 12:05:30 -0400 Subject: [PATCH] docs: remove xml tag from collection#find (#8550) --- packages/collection/src/collection.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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