docs: fix formating

This commit is contained in:
amin 2024-07-09 02:12:42 +01:00 committed by zanninso
parent b0692b6052
commit 42768b456b
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ Write a class `Task` that has two attributes: `description` and `status`, with t
Write a class called `TodoList` that represents a to-do list. The class should be able to hold a specified number of tasks, each with a description and a status. Include methods to add tasks, set a task's status, update task descriptions, and display all tasks in a neat format showing their descriptions and statuses.
> The description length will be less or equal to 30 Character.When the list is full nothing more will be added.
> The description length will be less or equal to 30 Character.When the list is full nothing more will be added.
### Expected Functions