Skip to content

Commit 4f45ec2

Browse files
Update modules.md
1 parent e2ac97e commit 4f45ec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `@Module()` decorator takes a single object with properties that describe th
1717

1818
The module **encapsulates** providers by default, meaning you can only inject providers that are either part of the current module or explicitly exported from other imported modules. The exported providers from a module essentially serve as the module's public interface or API.
1919

20-
#### Feature Modules
20+
#### Feature modules
2121

2222
In our example, the `CatsController` and `CatsService` are closely related and serve the same application domain. It makes sense to group them into a feature module. A feature module organizes code that is relevant to a specific feature, helping to maintain clear boundaries and better organization. This is particularly important as the application or team grows, and it aligns with the [SOLID](https://en.wikipedia.org/wiki/SOLID) principles.
2323

0 commit comments

Comments
 (0)