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