From fe1793844d75851c3d3acf3d20cfe4bf63432a51 Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Tue, 9 Jul 2019 15:12:27 -0400 Subject: [PATCH] docs: fix typo in Template Syntax headers (#31474) Fixes #31467 PR Close #31474 --- aio/content/guide/template-syntax.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md index d869ea9082..764b8fb450 100644 --- a/aio/content/guide/template-syntax.md +++ b/aio/content/guide/template-syntax.md @@ -2063,14 +2063,14 @@ to declare inputs and outputs, you can identify members in the `inputs` and `outputs` arrays of the directive metadata, as in this example: - + While declaring `inputs` and `outputs` in the `@Directive` and `@Component` metadata is possible, it is a better practice to use the `@Input()` and `@Output()` class decorators instead, as follows: - + See the [Decorate input and output properties](guide/styleguide#decorate-input-and-output-properties) section of the @@ -2104,7 +2104,7 @@ offer a solution. Alias inputs and outputs in the metadata using a colon-delimited (`:`) string with the directive property name on the left and the public alias on the right: - + @@ -2112,7 +2112,7 @@ the directive property name on the left and the public alias on the right: You can specify the alias for the property name by passing the alias name to the `@Input()`/`@Output()` decorator. The internal name remains as usual. - +