From b5bf987bc4ff661121b03e65f7b8d91352db7eca Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Thu, 22 May 2025 19:20:20 -0500 Subject: [PATCH] Update doc comment in phase.ts --- src/phase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phase.ts b/src/phase.ts index 8816c71e456..b15dcd679ba 100644 --- a/src/phase.ts +++ b/src/phase.ts @@ -21,7 +21,7 @@ export abstract class Phase { * Check if the phase is of the given type without requiring `instanceof`. * * @param phase - The string name of the phase to check. - * @returns `true` if this phase is of the given type, `false` otherwise. + * @returns Whether this phase is of the provided type. * * @remarks * This does not check for subclasses! It only checks if the phase is *exactly* the given type.