From b7a7e687a421c7e0902696800d95c6708c13f915 Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Mon, 23 Nov 2020 19:07:20 +0200 Subject: [PATCH] Fix typo in 2.99.2 (Selection and Range) --- 2-ui/99-ui-misc/02-selection-range/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/99-ui-misc/02-selection-range/article.md b/2-ui/99-ui-misc/02-selection-range/article.md index 9b6deb0d..c56f55cf 100644 --- a/2-ui/99-ui-misc/02-selection-range/article.md +++ b/2-ui/99-ui-misc/02-selection-range/article.md @@ -494,7 +494,7 @@ Focus on me, the cursor will be at position 10. // zero delay setTimeout to run after browser "focus" action finishes setTimeout(() => { // we can set any selection - // if start=end, the cursor it exactly at that place + // if start=end, the cursor is exactly at that place area.selectionStart = area.selectionEnd = 10; }); };