From 7e23fccfd70a7cc78f40ed44646b329ab3cda890 Mon Sep 17 00:00:00 2001 From: Daniel Lee <115248908+Linielt@users.noreply.github.com> Date: Sat, 24 Feb 2024 23:22:17 +0000 Subject: [PATCH] Fix typo TodoList Part 2 User Interface --- data/part-6/2-separating-user-interface-from-program-logic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-6/2-separating-user-interface-from-program-logic.md b/data/part-6/2-separating-user-interface-from-program-logic.md index cee2c58f6..bc7728702 100644 --- a/data/part-6/2-separating-user-interface-from-program-logic.md +++ b/data/part-6/2-separating-user-interface-from-program-logic.md @@ -1514,7 +1514,7 @@ Next, implement a class called `UserInterface`. It should have a constructor wit - The command `add` asks the user for the next task to be added. Once the user enters this task, it should be added to the to-do list. -- The commmand `list` prints all the tasks on the to-do list. +- The command `list` prints all the tasks on the to-do list. - The command `remove` asks the user to enter the id of the task to be removed. When this has been entered, the specified task should be removed from the list of tasks.