From 68b4c5987e40b4e6a742d2b4b4f3a6fb58dabf3f Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 15:18:34 -0700 Subject: [PATCH] Fix TSDocs in `to-have-effective-stat.ts` Unfortunately VSCode doesn't support `Class#property` --- test/test-utils/matchers/to-have-effective-stat.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test-utils/matchers/to-have-effective-stat.ts b/test/test-utils/matchers/to-have-effective-stat.ts index 42faee2e904..bc10a646c02 100644 --- a/test/test-utils/matchers/to-have-effective-stat.ts +++ b/test/test-utils/matchers/to-have-effective-stat.ts @@ -9,17 +9,17 @@ import type { MatcherState, SyncExpectationResult } from "@vitest/expect"; export interface ToHaveEffectiveStatMatcherOptions { /** * The target {@linkcode Pokemon} - * @see {@linkcode Pokemon#getEffectiveStat} + * @see {@linkcode Pokemon.getEffectiveStat} */ enemy?: Pokemon; /** * The {@linkcode Move} being used - * @see {@linkcode Pokemon#getEffectiveStat} + * @see {@linkcode Pokemon.getEffectiveStat} */ move?: Move; /** * Whether a critical hit occurred or not - * @see {@linkcode Pokemon#getEffectiveStat} + * @see {@linkcode Pokemon.getEffectiveStat} * @defaultValue `false` */ isCritical?: boolean;