@@ -336,7 +336,7 @@ export type Translated<T> = T & WithTranslation
336336 * @template T
337337 * @template K
338338 * @param {() => T } autorun The autorun function to be run.
339- * @param {React.DependencyList } [deps] A required list of dependenices to limit the tracker re-running. Can be left empty, if tracker
339+ * @param {React.DependencyList } [deps] A required list of dependencies to limit the tracker re-running. Can be left empty, if tracker
340340 * has no external dependencies and should only be rerun when it's invalidated.
341341 * @param {K } [initial] An optional, initial state of the tracker. If not provided, the tracker may return undefined.
342342 * @return {* } {(T | K)}
@@ -458,7 +458,7 @@ function useDelayState(initialState = false): {
458458 *
459459 * @export
460460 * @param {PubSub } sub The subscription to be subscribed to
461- * @param {...any[] } args A list of arugments for the subscription. This is used for optimizing the subscription across
461+ * @param {...any[] } args A list of arguments for the subscription. This is used for optimizing the subscription across
462462 * renders so that it isn't torn down and created for every render.
463463 */
464464export function useSubscription < K extends keyof AllPubSubTypes > (
@@ -497,7 +497,7 @@ export function useSubscription<K extends keyof AllPubSubTypes>(
497497 * @export
498498 * @param {PubSub } sub The subscription to be subscribed to
499499 * @param {boolean } enable Whether the subscription is enabled
500- * @param {...any[] } args A list of arugments for the subscription. This is used for optimizing the subscription across
500+ * @param {...any[] } args A list of arguments for the subscription. This is used for optimizing the subscription across
501501 * renders so that it isn't torn down and created for every render.
502502 */
503503export function useSubscriptionIfEnabled < K extends keyof AllPubSubTypes > (
@@ -542,7 +542,7 @@ export function useSubscriptionIfEnabled<K extends keyof AllPubSubTypes>(
542542 * @export
543543 * @param {PubSub } sub The subscription to be subscribed to
544544 * @param {boolean } enable Whether the subscription is enabled
545- * @param {...any[] } args A list of arugments for the subscription. This is used for optimizing the subscription across
545+ * @param {...any[] } args A list of arguments for the subscription. This is used for optimizing the subscription across
546546 * renders so that it isn't torn down and created for every render.
547547 */
548548export function useSubscriptionIfEnabledReadyOnce < K extends keyof AllPubSubTypes > (
0 commit comments