From 42768b456b3874046b6abce2db8bdd9e593f4a3d Mon Sep 17 00:00:00 2001 From: amin Date: Tue, 9 Jul 2024 02:12:42 +0100 Subject: [PATCH] docs: fix formating --- subjects/java/checkpoints/todo-list/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/checkpoints/todo-list/README.md b/subjects/java/checkpoints/todo-list/README.md index 7598ce4ef..d753e2718 100644 --- a/subjects/java/checkpoints/todo-list/README.md +++ b/subjects/java/checkpoints/todo-list/README.md @@ -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