More minor comment modifications

This commit is contained in:
NightKev 2025-06-07 23:50:55 -07:00
parent 9e1ed4932b
commit 9d1a2c7640

View File

@ -548,7 +548,8 @@ export class PhaseManager {
} }
/** /**
* Create a new phase and immediately prepend it to the phase queue. Equivalent to calling {@linkcode create} followed by {@linkcode prependToPhase}. * Create a new phase and immediately prepend it to an existing phase in the phase queue.
* Equivalent to calling {@linkcode create} followed by {@linkcode prependToPhase}.
* @param targetPhase - The phase to search for in phaseQueue * @param targetPhase - The phase to search for in phaseQueue
* @param phase - The name of the phase to create * @param phase - The name of the phase to create
* @param args - The arguments to pass to the phase constructor * @param args - The arguments to pass to the phase constructor
@ -563,7 +564,8 @@ export class PhaseManager {
} }
/** /**
* Create a new phase and immediately append it to the phase queue. Equivalent to calling {@linkcode create} followed by {@linkcode appendToPhase}. * Create a new phase and immediately append it to an existing phase the phase queue.
* Equivalent to calling {@linkcode create} followed by {@linkcode appendToPhase}.
* @param targetPhase - The phase to search for in phaseQueue * @param targetPhase - The phase to search for in phaseQueue
* @param phase - The name of the phase to create * @param phase - The name of the phase to create
* @param args - The arguments to pass to the phase constructor * @param args - The arguments to pass to the phase constructor