From 9248ee2c647a41d85858f8e3f1294d91d7c08462 Mon Sep 17 00:00:00 2001 From: Mario Sabo <34521484+msabo1@users.noreply.github.com> Date: Mon, 4 Jan 2021 18:21:28 +0100 Subject: [PATCH] docs: fix interchanged values (#40302) PR Close #40302 --- aio/content/guide/dependency-injection-providers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/dependency-injection-providers.md b/aio/content/guide/dependency-injection-providers.md index dc3906be6c..3912b82f5c 100644 --- a/aio/content/guide/dependency-injection-providers.md +++ b/aio/content/guide/dependency-injection-providers.md @@ -172,7 +172,7 @@ The following example defines a token, `APP_CONFIG` of the type `InjectionToken` -The optional type parameter, `app.config`, and the token description, `` specify the token's purpose. +The optional type parameter, ``, and the token description, `app.config`, specify the token's purpose. Next, register the dependency provider in the component using the `InjectionToken` object of `APP_CONFIG`.