From 4dbc87116912d838da97b8fb7a046e515bdaa4d0 Mon Sep 17 00:00:00 2001 From: ajitsinghkaler Date: Sun, 19 Jan 2020 11:14:53 +0530 Subject: [PATCH] docs(core): fix typo in dependency injection guide (interactive --> interacting) (#34853) Fixes #34852 PR Close #34853 --- aio/content/guide/dependency-injection-in-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/dependency-injection-in-action.md b/aio/content/guide/dependency-injection-in-action.md index 862d1203ad..0b117be78e 100644 --- a/aio/content/guide/dependency-injection-in-action.md +++ b/aio/content/guide/dependency-injection-in-action.md @@ -250,7 +250,7 @@ Using a custom provider allows you to provide a concrete implementation for impl -The `factory` function returns the `localStorage` property that is attached to the browser window object. The `Inject` decorator is a constructor parameter used to specify a custom provider of a dependency. This custom provider can now be overridden during testing with a mock API of `localStorage` instead of interactive with real browser APIs. +The `factory` function returns the `localStorage` property that is attached to the browser window object. The `Inject` decorator is a constructor parameter used to specify a custom provider of a dependency. This custom provider can now be overridden during testing with a mock API of `localStorage` instead of interacting with real browser APIs. {@a skip}