From c004d483ab5c28c84f7f6baacf74727d62176e0b Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Wed, 15 Nov 2017 13:51:41 +0200 Subject: [PATCH] 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 --- packages/core/src/linker/element_ref.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/linker/element_ref.ts b/packages/core/src/linker/element_ref.ts index 6d8d9a2ae7..604b8f92df 100644 --- a/packages/core/src/linker/element_ref.ts +++ b/packages/core/src/linker/element_ref.ts @@ -30,9 +30,9 @@ export class ElementRef { *
Use with caution
*

* 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. *

*

* Relying on direct DOM access creates tight coupling between your application and rendering