From 47e3c34bc4dbfa7cc26195db95c52aaa5c80d014 Mon Sep 17 00:00:00 2001 From: rburgst Date: Fri, 13 Sep 2024 18:38:15 +0200 Subject: [PATCH] refactor: fix typo in comment --- src/internal.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.d.ts b/src/internal.d.ts index b1f317fa49..9c588ce6a0 100644 --- a/src/internal.d.ts +++ b/src/internal.d.ts @@ -45,7 +45,7 @@ declare global { oldVNode?: VNode | undefined, errorInfo?: ErrorInfo | undefined ): void; - /** Attach a hook that firs when hydration can't find a proper DOM-node to match with */ + /** Attach a hook that fires when hydration can't find a proper DOM-node to match with */ _hydrationMismatch?(vnode: VNode, excessDomChildren: PreactElement[]): void; }