From 9262702ef768725e01a6a99112798e1f5c175c45 Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Wed, 4 Nov 2020 13:24:25 +0200 Subject: [PATCH] docs: fix typos in the "Attribute Binding" guide (#39562) PR Close #39562 --- aio/content/guide/attribute-binding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/attribute-binding.md b/aio/content/guide/attribute-binding.md index 899c0813e6..5affacd929 100644 --- a/aio/content/guide/attribute-binding.md +++ b/aio/content/guide/attribute-binding.md @@ -58,7 +58,7 @@ To use attribute binding with the `` attribute `colspan`: 1. Specify the `colspan` attribute by using the following syntax: `[attr.colspan]`. 1. Set `[attr.colspan]` equal to an expression. -In the following example, binds the `colspan` attribute to the expression `1 + 1`. +In the following example, we bind the `colspan` attribute to the expression `1 + 1`. @@ -177,7 +177,7 @@ You can write a style property name in either [dash-case](guide/glossary#dash-ca ### Binding to multiple styles -To toggle multiple styles, bind to the `[style]` attribute—for example, `[style]="styleExpression"`). +To toggle multiple styles, bind to the `[style]` attribute—for example, `[style]="styleExpression"`. The expression is often a string list of styles such as `"width: 100px; height: 100px;"`. You can also format the expression as an object with style names as the keys and style values as the values, such as `{width: '100px', height: '100px'}`.