From 7b0d4773ce69f1624fb1ac7520ceaa8c87a0a805 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Sat, 8 Aug 2020 04:24:02 -0300 Subject: [PATCH] repeated word --- 2-ui/3-event-details/6-pointer-events/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/3-event-details/6-pointer-events/article.md b/2-ui/3-event-details/6-pointer-events/article.md index 7c4d0a06..52680240 100644 --- a/2-ui/3-event-details/6-pointer-events/article.md +++ b/2-ui/3-event-details/6-pointer-events/article.md @@ -84,7 +84,7 @@ Please note: there `pointerId` is assigned not to the whole device, but for each The events associated with the first finger always have `isPrimary=true`. -We can track multiple touching fingers using their `pointerId`. When the user moves move and then detouches a finger, we get `pointermove` and `pointerup` events with the same `pointerId` as we had in `pointerdown`. +We can track multiple touching fingers using their `pointerId`. When the user moves and then detouches a finger, we get `pointermove` and `pointerup` events with the same `pointerId` as we had in `pointerdown`. ```online Here's the demo that logs `pointerdown` and `pointerup` events: