From 5d8c7be59f64bbf3736c1c12b6754364c109d6e6 Mon Sep 17 00:00:00 2001 From: DustinLin <39450497+DustinLin@users.noreply.github.com> Date: Thu, 5 Sep 2024 13:22:03 -0700 Subject: [PATCH] Apply suggestions from code review editing doc text Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com> --- src/field/arena.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/field/arena.ts b/src/field/arena.ts index df44de66d46..6b9f75818c9 100644 --- a/src/field/arena.ts +++ b/src/field/arena.ts @@ -289,8 +289,8 @@ export class Arena { /** * Sets weather to the override specified in overrides.ts - * @param weather {@linkcode WeatherType} new weather to set of type WeatherType - * @returns boolean - true to force trySetWeather to return true + * @param weather new {@linkcode WeatherType} to set + * @returns true to force trySetWeather to return true */ trySetWeatherOverride(weather: WeatherType): boolean { this.weather = new Weather(weather, 0); @@ -301,7 +301,7 @@ export class Arena { /** * Attempts to set a new weather to the battle - * @param weather {@linkcode WeatherType} new weather to set of type WeatherType + * @param weather {@linkcode WeatherType} new {@linkcode WeatherType} to set * @param hasPokemonSource boolean if the new weather is from a pokemon * @returns true if new weather set, false if no weather provided or attempting to set the same weather as currently in use */