Skip to content
This repository was archived by the owner on Jun 12, 2020. It is now read-only.

Commit 06c8b66

Browse files
Luis HernandezLuis Hernandez
Luis Hernandez
authored and
Luis Hernandez
committed
fixes typos
1 parent a2b8231 commit 06c8b66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,22 @@ Complete the following tasks:
7474

7575
A `project` is what needs to be done. We want to store the following data about a `project`:
7676

77-
- [ ] a unique Id.
77+
- [ ] a unique ID.
7878
- [ ] a name. This column is required.
7979
- [ ] a description.
8080
- [ ] a boolean that indicates if the project has been completed. This column cannot be NULL, the default value should be `false`.
8181

8282
A `resource` is anything needed to complete a project, some examples are: a person, a tool, a meeting room or a software license. We want to store the following data about a `resource`:
8383

84-
- [ ] a unique Id.
84+
- [ ] a unique ID.
8585
- [ ] a name. This column is required.
8686
- [ ] a description.
8787

8888
The database should not allow resources with duplicate names.
8989

90-
An `task` one of the steps needed to complete the project. We want to store the following data about an `task`.
90+
A `task` one of the steps needed to complete the project. We want to store the following data about an `task`.
9191

92-
- [ ] a unique id.
92+
- [ ] a unique ID.
9393
- [ ] a description of what needs to be done. This column is required.
9494
- [ ] a notes column to add additional information.
9595
- [ ] a boolean that indicates if the task has been completed. This column cannot be NULL, the default value should be `false`.

0 commit comments

Comments
 (0)