From d57c800a88528fb6362783f1e31fc095ec2a747c Mon Sep 17 00:00:00 2001 From: muscode Date: Fri, 1 Nov 2024 10:19:31 -0600 Subject: [PATCH] fix tsdocs Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/ability.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 684fc01e1ac..5dd9a36b600 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -4814,9 +4814,9 @@ class ForceSwitchOutHelper { /** * Determines if a Pokémon can switch out based on its status, the opponent's status, and battle conditions. * - * @param {Pokemon} pokemon The Pokémon attempting to switch out. - * @param {Pokemon} opponent The opponent Pokémon. - * @returns {boolean} True if the switch-out condition is met, false otherwise. + * @param pokemon The Pokémon attempting to switch out. + * @param opponent The opponent Pokémon. + * @returns `true` if the switch-out condition is met */ getSwitchOutCondition(pokemon: Pokemon, opponent: Pokemon): boolean { const switchOutTarget = pokemon;