Skip to content

Commit 0dc3c67

Browse files
Merge pull request #2421 from thiagomini/patch-3
chore(fundamentals): fix typo
2 parents 909b3c9 + 8b0f1e1 commit 0dc3c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/fundamentals/dynamic-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ export class AppModule {}
426426

427427
There are edge-cases when your module may need to take extra options that determine how it is supposed to behave (a nice example of such an option is the `isGlobal` flag - or just `global`) that at the same time, shouldn't be included in the `MODULE_OPTIONS_TOKEN` provider (as they are irrelevant to services/providers registered within that module, for example, `ConfigService` does not need to know whether its host module is registered as a global module).
428428

429-
In such cases, the `ConfigurableModuleBuilder#setExtras` method can be used. See the following exxample:
429+
In such cases, the `ConfigurableModuleBuilder#setExtras` method can be used. See the following example:
430430

431431
```typescript
432432
export const { ConfigurableModuleClass, MODULE_OPTIONS_TOKEN } =

0 commit comments

Comments
 (0)