commit 96e76dbea5b5f9c535c65bc9f7439f9202dec420
parent fb3124bebb10a4d971b9e33c7cc5c307b5b72c92
Author: Adrián Oliva <[email protected]>
Date:   Sat, 20 May 2023 13:51:27 -0600
Renaming UI things.
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -79,7 +79,7 @@ should appear with the following inputs:
 -   `Text` $\rightarrow$ The name of the to do.
 -   `Due date` $\rightarrow$ The date for which the to do is due. **It only
     accepts days and not hours, minutes nor seconds.**
--   `Done` $\rightarrow$ If the to do is already completed or not.
+-   `Completed` $\rightarrow$ If the to do is already completed or not.
 -   `Priority` $\rightarrow$ The priority of the to do. It could be either
     _Low_, _Medium_ or _High_.
 
diff --git a/src/ToDo.jsx b/src/ToDo.jsx
@@ -123,7 +123,7 @@ export function NewToDo() {
                                         className="form-check-label"
                                         htmlFor="new-todo-done"
                                     >
-                                        Done
+                                        Completed
                                     </label>
                                 </div>
                                 <div className="form-floating mb-3">
@@ -243,7 +243,7 @@ export function ListToDos() {
                 <table className="table align-middle">
                     <thead>
                         <tr>
-                            <th scope="col">#</th>
+                            <th scope="col">Done</th>
                             <th scope="col">Name</th>
                             <th
                                 scope="col"
@@ -416,7 +416,7 @@ export function ListToDos() {
                                         className="form-check-label"
                                         htmlFor="edit-todo-done"
                                     >
-                                        Done
+                                        Completed
                                     </label>
                                 </div>
                                 <div className="form-floating mb-3">