Skip to content

Commit 9635f9a

Browse files
authored
docs: fix a minor grammar mistake
1 parent 58e409b commit 9635f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/recipes/cqrs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The flow of simple [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and
44

55
1. The **controllers** layer handles HTTP requests and delegates tasks to the services layer.
66
2. The **services layer** is where most of the business logic lives.
7-
3. Services uses **repositories / DAOs** to change / persist entities.
7+
3. Services use **repositories / DAOs** to change / persist entities.
88
4. Entities act as containers for the values, with setters and getters.
99

1010
In most cases, for small and medium-sized applications, this pattern is sufficient. However, when our requirements become more complex, the **CQRS** model may be more appropriate and scalable. To facilitate that model, Nest provides a lightweight [CQRS module](https://github.com/nestjs/cqrs). This chapter describes how to use it.

0 commit comments

Comments
 (0)