From a36b4484faf79722fd1b68672c0e938f8f7961e7 Mon Sep 17 00:00:00 2001 From: AJ Fontaine Date: Mon, 10 Feb 2025 16:26:44 -0500 Subject: [PATCH] Update docstrings --- src/data/pokemon-species.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/pokemon-species.ts b/src/data/pokemon-species.ts index 395aef39a42..25231ca5835 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -692,7 +692,6 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali /** * Find the name of species with proper attachments for regionals and separate starter forms (Floette, Ursaluna) - * @param species the species to check * @returns a string with the region name or other form name attached */ getExpandedSpeciesName(): string { @@ -712,7 +711,8 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali /** * Find the form name for species with just one form (regional variants, Floette, Ursaluna) - * @param species the species to check + * @param formIndex The form index to check (defaults to 0) + * @param append Whether to append the species name to the end (defaults to false) * @returns the pokemon-form locale key for the single form name ("Alolan Form", "Eternal Flower" etc) */ getFormNameToDisplay(formIndex: number = 0, append: boolean = false): string {