Skip to content

Commit

Permalink
refactor(@schematics/angular): correct several comment typos
Browse files Browse the repository at this point in the history
There were several typos in the comments for the Angular schematics utilities.
  • Loading branch information
clydin authored and alan-agius4 committed Feb 12, 2024
1 parent 87a01f9 commit d7dccbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/schematics/angular/private/standalone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function addModuleImportToStandaloneBootstrap(
* @param functionName Name of the function that should be called.
* @param importPath Path from which to import the function.
* @param args Arguments to use when calling the function.
* @returns The file path that the provider was added to.
* @return The file path that the provider was added to.
* @deprecated Private utility that will be removed. Use `addRootImport` or `addRootProvider` from
* `@schematics/angular/utility` instead.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface PendingCode {
imports: PendingImports;
}

/** Map keeping track of imports and aliases under which they're referred to in an expresion. */
/** Map keeping track of imports and aliases under which they're referred to in an expression. */
type PendingImports = Map<string, Map<string, string>>;

/** Counter used to generate unique IDs. */
Expand Down

0 comments on commit d7dccbf

Please sign in to comment.