diff --git a/aliasServer/aliasServerTeams/task.md b/aliasServer/aliasServerTeams/task.md
index 5e181ac2..3e40d823 100644
--- a/aliasServer/aliasServerTeams/task.md
+++ b/aliasServer/aliasServerTeams/task.md
@@ -5,10 +5,10 @@ Create a data class `Team` in the `jetbrains.kotlin.course.alias.team` package i
to store the number of points in the game. For `points`, set the default value `0`.
- It must have an additional property `name`, which initializes automatically as `"Team#${id + 1}"` and will be shown in the leaderboard.
-
+
- If you have a compilation error and you have not solved this step yet, please solve the task and try again.
- It is expected behavior, since the code requires the class `Team`, but it does not exist.
+ If you encounter a compilation error and have not completed this task yet, please solve it first and then try again.
+ This is expected behavior, since the code requires the class `Team`, which currently does not exist.
@@ -37,7 +37,7 @@ It is convenient to use data classes in all cases
when we need just to store something and have automatically implemented methods like `toString`.
-
+
In this game, the team is defined only by its `id` (as well as the number of points),
and we need a `name` only for a pretty display on the screen.