From fe9554ac8ef22a60a27df97ba0cb2ceee8b0b336 Mon Sep 17 00:00:00 2001 From: Guy Freeman <416374+gfrmin@users.noreply.github.com> Date: Thu, 5 Sep 2024 16:52:40 +0300 Subject: [PATCH] Update article.md Only one example polyfill library given --- 1-js/03-code-quality/06-polyfills/article.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/1-js/03-code-quality/06-polyfills/article.md b/1-js/03-code-quality/06-polyfills/article.md index 19404b7b5f..05f0efd6f7 100644 --- a/1-js/03-code-quality/06-polyfills/article.md +++ b/1-js/03-code-quality/06-polyfills/article.md @@ -71,8 +71,7 @@ if (!Math.trunc) { // if no such function JavaScript is a highly dynamic language. Scripts may add/modify any function, even built-in ones. -Two interesting polyfill libraries are: -- [core js](https://github.com/zloirock/core-js) that supports a lot, allows to include only needed features. +An interesting polyfill library is [core js](https://github.com/zloirock/core-js) that supports a lot, and allows including only needed features. ## Summary