From a149bc0479beb609c51597ff67c84c0bfb14e241 Mon Sep 17 00:00:00 2001 From: Yasath <31599563+yasath@users.noreply.github.com> Date: Thu, 13 Aug 2020 12:19:25 +0100 Subject: [PATCH] Fixed "compatibility" spelling error --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index ab8094f1..ff728d0d 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -81,7 +81,7 @@ const bigInt = 1234567890123456789012345678901234567890n; As `BigInt` numbers are rarely needed, we don't cover them here, but devoted them a separate chapter . Read it when you need such big numbers. -```smart header="Compatability issues" +```smart header="Compatibility issues" Right now `BigInt` is supported in Firefox/Chrome/Edge, but not in Safari/IE. ```