From 07aeafa75c0880acf49e81e3af68c0143d6f557a Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Wed, 20 Mar 2019 13:47:57 +0000 Subject: [PATCH] style(ivy): ngcc - fix typo in comment (#29092) PR Close #29092 --- .../compiler-cli/src/ngcc/src/packages/dependency_resolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/compiler-cli/src/ngcc/src/packages/dependency_resolver.ts b/packages/compiler-cli/src/ngcc/src/packages/dependency_resolver.ts index 1448a933d8..8fffb6e90e 100644 --- a/packages/compiler-cli/src/ngcc/src/packages/dependency_resolver.ts +++ b/packages/compiler-cli/src/ngcc/src/packages/dependency_resolver.ts @@ -74,7 +74,7 @@ export class DependencyResolver { const ignoredDependencies: IgnoredDependency[] = []; const graph = new DepGraph(); - // Add the entry ponts to the graph as nodes + // Add the entry points to the graph as nodes entryPoints.forEach(entryPoint => graph.addNode(entryPoint.path, entryPoint)); // Now add the dependencies between them