From a24120011e3353ad29dd7d3969ea7b37972c71be Mon Sep 17 00:00:00 2001 From: Ernest Galbrun Date: Thu, 10 Jan 2019 14:15:03 +0100 Subject: [PATCH] docs(core): fix typo (#28042) PR Close #28042 --- packages/core/src/di/injection_token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/di/injection_token.ts b/packages/core/src/di/injection_token.ts index 67e82b71ea..4879bce567 100644 --- a/packages/core/src/di/injection_token.ts +++ b/packages/core/src/di/injection_token.ts @@ -15,7 +15,7 @@ import {defineInjectable} from './interface/defs'; * * Use an `InjectionToken` whenever the type you are injecting is not reified (does not have a * runtime representation) such as when injecting an interface, callable type, array or - * parametrized type. + * parameterized type. * * `InjectionToken` is parameterized on `T` which is the type of object which will be returned by * the `Injector`. This provides additional level of type safety.