From 1e47d907f047704b67d565c8aa9aafb66ea766b1 Mon Sep 17 00:00:00 2001 From: va-z <47354230+va-z@users.noreply.github.com> Date: Sat, 18 Jan 2020 14:41:48 +0500 Subject: [PATCH] article.md Typo fix. --- 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 862975dc14..94b4da85cc 100644 --- a/2-ui/99-ui-misc/02-selection-range/article.md +++ b/2-ui/99-ui-misc/02-selection-range/article.md @@ -16,7 +16,7 @@ You can get ready to use recipes at the end, in "Summary" section. But you'll ge The basic concept of selection is [Range](https://dom.spec.whatwg.org/#ranges): basically, a pair of "boundary points": range start and range end. -Each point represented as a parent DOM node with the relative offset from its start. If the parent node is an element element node, then the offset is a child number, for a text node it's the position in the text. Examples to follow. +Each point represented as a parent DOM node with the relative offset from its start. If the parent node is an element node, then the offset is a child number, for a text node it's the position in the text. Examples to follow. Let's select something.