From 907e6c83355c88d00ab07d482094816626c1ce5b Mon Sep 17 00:00:00 2001 From: Osvaldo Dias dos Santos Date: Mon, 7 Dec 2020 17:12:39 +0100 Subject: [PATCH] Fix "polyfills" typo --- 1-js/03-code-quality/06-polyfills/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/06-polyfills/article.md b/1-js/03-code-quality/06-polyfills/article.md index 81b6d660..7639b9bb 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -78,7 +78,7 @@ Two interesting libraries of polyfills are: ## Summary -In this chapter we'd like to motivate you to study modern and even "bleeding-edge" langauge features, even if they aren't yet well-supported by JavaScript engines. +In this chapter we'd like to motivate you to study modern and even "bleeding-edge" language features, even if they aren't yet well-supported by JavaScript engines. Just don't forget to use transpiler (if using modern syntax or operators) and polyfills (to add functions that may be missing). And they'll ensure that the code works.