diff --git a/src/internal/active-elements.ts b/src/internal/active-elements.ts index 993480eb9..e108ca47c 100644 --- a/src/internal/active-elements.ts +++ b/src/internal/active-elements.ts @@ -1,10 +1,10 @@ /** * Use a generator so we can iterate and possibly break early. * @example - * // to operate like a regular array. This gets kinda nullify generator benefits. + * // to operate like a regular array. This kinda nullifies generator benefits, but worth knowing if you need the whole array. * const allActiveElements = [...activeElements()] * - * // Earlier return + * // Early return * for (const activeElement of activeElements()) { * if () { * break; // Break the loop, dont need to iterate over the whole array or store an array in memory!