style(core): fix max line length to pass linting (#20441)

Accidentally introduced in #19920, where other linting errors (unrelated to the
PR) prevented proper linting.

PR Close #20441
This commit is contained in:
George Kalpakas 2017-11-15 13:51:41 +02:00 committed by Jason Aden
parent 2586846ee2
commit c004d483ab
1 changed files with 3 additions and 3 deletions

View File

@ -30,9 +30,9 @@ export class ElementRef {
* <header>Use with caution</header>
* <p>
* Use this API as the last resort when direct access to DOM is needed. Use templating and
* data-binding provided by Angular instead. Alternatively you can take a look at {@link Renderer2}
* which provides API that can safely be used even when direct access to native elements is not
* supported.
* data-binding provided by Angular instead. Alternatively you can take a look at
* {@link Renderer2} which provides API that can safely be used even when direct access to
* native elements is not supported.
* </p>
* <p>
* Relying on direct DOM access creates tight coupling between your application and rendering