Skip to content

Commit

Permalink
doc: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
le-harivansh committed Mar 17, 2024
1 parent e331fb0 commit 60cbbe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/common/module-utils/configurable-module.builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { generateOptionsInjectionToken, getInjectionProviders } from './utils';
*/
export interface ConfigurableModuleBuilderOptions {
/**
* Specified what injection token should be used for the module options provider.
* Specifies what injection token should be used for the module options provider.
* By default, an auto-generated UUID will be used.
*/
optionsInjectionToken?: string | symbol;
Expand All @@ -29,11 +29,11 @@ export interface ConfigurableModuleBuilderOptions {
* Explicitly specifying the "moduleName" will instruct the "ConfigurableModuleBuilder"
* to use a more descriptive provider token.
*
* For example, if `moduleName: "Cache"` then auto-generated provider token will be "CACHE_MODULE_OPTIONS".
* For example, `moduleName: "Cache"` will auto-generate the provider token: "CACHE_MODULE_OPTIONS".
*/
moduleName?: string;
/**
* Indicates whether module should always be "transient", meaning,
* Indicates whether module should always be "transient" - meaning,
* every time you call the static method to construct a dynamic module,
* regardless of what arguments you pass in, a new "unique" module will be created.
*
Expand Down

0 comments on commit 60cbbe6

Please sign in to comment.