From 794f6c210d25d6b095154b559828292359e1d298 Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 1 Feb 2023 17:17:58 +0000 Subject: [PATCH] fix: minor typo in code comment (#1043) --- src/modules/style.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/style.ts b/src/modules/style.ts index ab9c6eb..6f86683 100755 --- a/src/modules/style.ts +++ b/src/modules/style.ts @@ -6,7 +6,7 @@ export type VNodeStyle = Record & { remove?: Record; }; -// Bindig `requestAnimationFrame` like this fixes a bug in IE/Edge. See #360 and #409. +// Binding `requestAnimationFrame` like this fixes a bug in IE/Edge. See #360 and #409. const raf = (typeof window !== "undefined" && window.requestAnimationFrame.bind(window)) ||