From 29007e406d24f7c4a881a5a710d977f04ee6d486 Mon Sep 17 00:00:00 2001 From: Eliran Eliassy Date: Mon, 4 Nov 2019 15:30:06 +0200 Subject: [PATCH] docs(core): remove duplicate 'because' (#33569) PR Close #33569 --- aio/content/guide/migration-injectable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/migration-injectable.md b/aio/content/guide/migration-injectable.md index 60a22c5d24..25932d83b2 100644 --- a/aio/content/guide/migration-injectable.md +++ b/aio/content/guide/migration-injectable.md @@ -25,7 +25,7 @@ There are a few cases where the decorator won't be added. For example: - It already has another decorator such as `@Component()`, `@Directive()` or `@Pipe()`. These decorators already cause the compiler to generate the necessary information. - The provider definition has `useValue`, `useFactory`, or `useExisting`. In - these cases, the framework doesn't need the `@Injectable()` decorator to create the class because + these cases, the framework doesn't need the `@Injectable()` decorator to create the class because it can just use the value, factory function, or existing instance that was provided.