docs: fix DOCUMENT import path (#38158) (#38159)

PR Close #38159
This commit is contained in:
Jaime Oliveira 2020-07-21 13:53:22 +02:00 committed by Andrew Kushnir
parent ad7046b934
commit a9910f5991
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ Angular does something similar with the `DOCUMENT` token so you can inject the b
```ts
import { Inject } from '@angular/core';
import { DOCUMENT } from '@angular/platform-browser';
import { DOCUMENT } from '@angular/common';
@Component({ ... })
export class MyComponent {