From 60b0b8dce210d0f1ec5747d7a62d5e312339f80d Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Wed, 7 Feb 2024 14:41:06 -0600 Subject: [PATCH] Corrected `hoverend` event name (#9) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b90282a..bea439a 100644 --- a/README.md +++ b/README.md @@ -481,7 +481,7 @@ The `hover` interaction provides an API for consistent hover behavior across all on:hoverstart={(e) => { console.log('you just hovered me!', e); }} - on:hoverstart={(e) => { + on:hoverend={(e) => { console.log('you just unhovered me!', e); }} >