From fbf76fe3b8de03e5558f7e4a5d2a2140aa684833 Mon Sep 17 00:00:00 2001 From: Daniel Hong Date: Thu, 30 Jan 2020 02:12:32 +0900 Subject: [PATCH] Fix typo in 11-coordinates/article.md A minor typo issue : polywill -> polyfill --- 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 18d56cd2..b4b577cd 100644 --- a/2-ui/1-document/11-coordinates/article.md +++ b/2-ui/1-document/11-coordinates/article.md @@ -91,7 +91,7 @@ In practice though, `elem.getBoundingClientRect()` always returns positive width ```warn header="Internet Explorer and Edge: no support for `x/y`" Internet Explorer and Edge don't support `x/y` properties for historical reasons. -So we can either make a polywill (add getters in `DomRect.prototype`) or just use `top/left`, as they are always the same as `x/y` for positive `width/height`, in particular in the result of `elem.getBoundingClientRect()`. +So we can either make a polyfill (add getters in `DomRect.prototype`) or just use `top/left`, as they are always the same as `x/y` for positive `width/height`, in particular in the result of `elem.getBoundingClientRect()`. ``` ```warn header="Coordinates right/bottom are different from CSS position properties"