From 6bc029c46aeb1963e0beb582e0eab179460ceebc Mon Sep 17 00:00:00 2001 From: Ovidiu Voicu Date: Sun, 16 Apr 2017 13:07:12 +0300 Subject: [PATCH] Added missing word --- 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 495b775c..71de8168 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -23,7 +23,7 @@ Actually, there are two parts in Babel: 2. Second, the polyfill. - The transpiler rewrites the code, so syntax features are covered. But for new functions we need to a special script that implements them. JavaScript is a highly dynamic language, scripts may not just add new functions, but also modify built-in ones, so that they behave according to the modern standard. + The transpiler rewrites the code, so syntax features are covered. But for new functions we need to add a special script that implements them. JavaScript is a highly dynamic language, scripts may not just add new functions, but also modify built-in ones, so that they behave according to the modern standard. There's a term "polyfill" for scripts that "fill in" the gap and add missing implementations.