From 8e8f165b289c773620a8fb5539131c907bec960a Mon Sep 17 00:00:00 2001 From: Anton Krekotun <36279559+tonchique@users.noreply.github.com> Date: Tue, 23 Jul 2019 12:33:13 +0300 Subject: [PATCH] Update article.md FIxed typo --- 2-ui/1-document/08-styles-and-classes/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/08-styles-and-classes/article.md b/2-ui/1-document/08-styles-and-classes/article.md index 07436882..80e41c68 100644 --- a/2-ui/1-document/08-styles-and-classes/article.md +++ b/2-ui/1-document/08-styles-and-classes/article.md @@ -40,7 +40,7 @@ For instance: ``` -If we assign something to `elem.className`, it replaces the whole strings of classes. Sometimes that's what we need, but often we want to add/remove a single class. +If we assign something to `elem.className`, it replaces the whole string of classes. Sometimes that's what we need, but often we want to add/remove a single class. There's another property for that: `elem.classList`.