docs(core): fix typo in dependency injection guide (interactive --> interacting) (#34853)

Fixes #34852

PR Close #34853
This commit is contained in:
ajitsinghkaler 2020-01-19 11:14:53 +05:30 committed by Matias Niemelä
parent 2694a3b734
commit 4dbc871169
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ Using a custom provider allows you to provide a concrete implementation for impl
</code-example>
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}