From 7987e3c546038de0eaa6d573596f51d3edc383bb Mon Sep 17 00:00:00 2001 From: Frej Alexander Nielsen Date: Sat, 9 Sep 2023 17:56:10 +0200 Subject: [PATCH] Fix ci : fix lint in MD (#3192) Co-authored-by: Frej Alexander Nielsen Co-authored-by: Romain Beaumont --- docs/ru/tutorial_ru.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ru/tutorial_ru.md b/docs/ru/tutorial_ru.md index dffdde98b..f15d3cf5a 100644 --- a/docs/ru/tutorial_ru.md +++ b/docs/ru/tutorial_ru.md @@ -197,7 +197,7 @@ const notDefined = undefined // undefined type ```js const name = 'Боб' -if (name === `Боб`) { +if (name === 'Боб') { console.log('Меня зовут Боб') } else if (name === 'Алиса') { console.log('Меня зовут Алиса')