From a284c7a1624f841462bf5e50cee641fbc1532f31 Mon Sep 17 00:00:00 2001 From: stephen-hero <78870893+stephen-hero@users.noreply.github.com> Date: Fri, 22 Dec 2023 18:42:13 +0200 Subject: [PATCH] Update task.md language in hints checked --- aliasServer/aliasServerTeams/task.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.