diff --git a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md
index e946e142c1..3e44829ac3 100644
--- a/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md
+++ b/curriculum/challenges/russian/01-responsive-web-design/css-flexbox/use-the-flex-direction-property-to-make-a-column.russian.md
@@ -7,17 +7,17 @@ localeTitle: Используйте свойство flex-direction для со
---
## Description
- Последние две проблемы использовали свойство flex-direction
заданное для строки. Это свойство также может создавать столбец путем вертикальной укладки дочерних элементов гибкого контейнера.
+ В предыдущих задачах свойство flex-direction
использовалось для создание рядов. С помощью этого свойства также можно создавать столбцы, размещая дочерние элементы "гибкого" контейнера вертикально один под другим.
## Instructions
- Добавьте свойство flex-direction
свойства CSS в элемент #box-container
и дайте ему значение столбца.
+ Добавьте CSS свойство flex-direction
к элементу #box-container
и задайте ему значение column.
## Tests
```yml
tests:
- - text: 'Элемент #box-container
должен иметь свойство flex-direction
заданное в столбце.'
+ - text: 'Элемент #box-container
должен иметь свойство flex-direction
со значением column.'
testString: 'assert($("#box-container").css("flex-direction") == "column", "The #box-container
element should have a flex-direction
property set to column.");'
```