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

Commit 2e721a7

Browse files
mjfroehlichpkozlowski-opensource
mjfroehlich
authored andcommitted
docs(guide/modules): fix minor typos
Closes #10584
1 parent 1eb6036 commit 2e721a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/module.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,14 +197,14 @@ Then Angular applies configuration blocks in the same order they were registered
197197
## Run Blocks
198198

199199
Run blocks are the closest thing in Angular to the main method. A run block is the code which
200-
needs to run to kickstart the application. It is executed after all of the service have been
200+
needs to run to kickstart the application. It is executed after all of the services have been
201201
configured and the injector has been created. Run blocks typically contain code which is hard
202202
to unit-test, and for this reason should be declared in isolated modules, so that they can be
203203
ignored in the unit-tests.
204204

205205
## Dependencies
206206

207-
Modules can list other modules as their dependencies. Depending on a module implies that required
207+
Modules can list other modules as their dependencies. Depending on a module implies that the required
208208
module needs to be loaded before the requiring module is loaded. In other words the configuration
209209
blocks of the required modules execute before the configuration blocks of the requiring module.
210210
The same is true for the run blocks. Each module can only be loaded once, even if multiple other

0 commit comments

Comments
 (0)