docs(core): fix typo in dependency injection guide (interactive --> interacting) (#34853)
Fixes #34852 PR Close #34853
This commit is contained in:
parent
2694a3b734
commit
4dbc871169
|
@ -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}
|
||||
|
||||
|
|
Loading…
Reference in New Issue