From 3d4ad8ff51d1c695eb33cb42addabce500770546 Mon Sep 17 00:00:00 2001 From: Mikhail Vasin Date: Tue, 1 May 2018 23:42:26 +0300 Subject: [PATCH] Fix a misused word --- 2-ui/1-document/11-coordinates/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/11-coordinates/article.md b/2-ui/1-document/11-coordinates/article.md index 919db9f4..35ba15e1 100644 --- a/2-ui/1-document/11-coordinates/article.md +++ b/2-ui/1-document/11-coordinates/article.md @@ -55,7 +55,7 @@ If we compare window coordinates versus CSS positioning, then there are obvious But in CSS the `right` property means the distance from the right edge, and the `bottom` -- from the bottom edge. -If we just look at the picture below, we can see that in JavaScript it is not so. All window coordinates are counted from the upper-left corner, including these ones. +If we just look at the picture above, we can see that in JavaScript it is not so. All window coordinates are counted from the upper-left corner, including these ones. ``` ## elementFromPoint(x, y) [#elementFromPoint]