From ce0305cf857453ad88f360cde22f34a3555fe42f Mon Sep 17 00:00:00 2001 From: muscode Date: Fri, 1 Nov 2024 10:20:19 -0600 Subject: [PATCH] fix tsdocs Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> --- src/data/ability.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/ability.ts b/src/data/ability.ts index 6fa35f86869..de6c5abf284 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -4864,8 +4864,8 @@ class ForceSwitchOutHelper { * recovered based on the damage dealt in the current turn. The recovery is multiplied by the * Shell Bell's modifier (if any). * - * @param {Pokemon} pokemon - The Pokémon whose Shell Bell recovery is being calculated. - * @returns {number} The amount of health recovered by Shell Bell. + * @param pokemon - The Pokémon whose Shell Bell recovery is being calculated. + * @returns The amount of health recovered by Shell Bell. */ function calculateShellBellRecovery(pokemon: Pokemon): number { const shellBellModifier = pokemon.getHeldItems().find(m => m instanceof HitHealModifier);