From 3768c99afd19a6db20d032d32ad29e26442217e2 Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 14 Oct 2019 06:32:30 +0800 Subject: [PATCH] correct typo --- _posts/2019-10-14-forcing-javascript-dom-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2019-10-14-forcing-javascript-dom-types.md b/_posts/2019-10-14-forcing-javascript-dom-types.md index 309593c..97df0e5 100644 --- a/_posts/2019-10-14-forcing-javascript-dom-types.md +++ b/_posts/2019-10-14-forcing-javascript-dom-types.md @@ -39,7 +39,7 @@ Important hint: the string parameter for `createElement` (`'table'` in our examp Well, this way, the variable `x` will have the type `HTMLTableElement` all the way in your code. -Then, intellisense will work like magic and you will get more helpful code completion like, for our our example... +Then, intellisense will work like magic and you will get more helpful code completion like, for our example... ```javascript x.insertRow() // -> will be detected if x is HTMLTableElement, NOT if x is HTMLElement