Skip to content

Commit 3d98887

Browse files
authored
Merge pull request #60 from VasileDurlesteanu/master
Update README.md
2 parents f71ee1a + 3034e0b commit 3d98887

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,8 +808,8 @@ You can download the PDF and Epub version of this repository from the latest run
808808
**[⬆ Back to Top](#table-of-contents)**
809809
810810
25. ### What are template expressions?
811-
A template expression produces a value similar to any Javascript expression. Angular executes the expression and assigns it to a property of a binding target; the target might be an HTML element, a component, or a directive. In the property binding, a template expression appears in quotes to the right of the = symbol as in [property]="expression".
812-
In interpolation syntax, the template expression is surrounded by double curly braces. For example, in the below interpolation, the template expression is {{username}},
811+
A template expression produces a value similar to any Javascript expression. Angular executes the expression and assigns it to a property of a binding target; the target might be an HTML element, a component, or a directive. In the property binding, a template expression appears in quotes to the right of the = symbol as in `[property]="expression"`.
812+
In interpolation syntax, the template expression is surrounded by double curly braces. For example, in the below interpolation, the template expression is `{{username}}`,
813813
814814
```html
815815
<h3>{{username}}, welcome to Angular</h3>
@@ -825,7 +825,7 @@ You can download the PDF and Epub version of this repository from the latest run
825825
**[⬆ Back to Top](#table-of-contents)**
826826
827827
26. ### What are template statements?
828-
A template statement responds to an event raised by a binding target such as an element, component, or directive. The template statements appear in quotes to the right of the = symbol like **(event)="statement"**.
828+
A template statement responds to an event raised by a binding target such as an element, component, or directive. The template statements appear in quotes to the right of the = symbol like `(event)="statement"`.
829829
830830
Let's take an example of button click event's statement
831831

0 commit comments

Comments
 (0)