diff --git a/aio/content/guide/event-binding.md b/aio/content/guide/event-binding.md index 537c27d643..078939456f 100644 --- a/aio/content/guide/event-binding.md +++ b/aio/content/guide/event-binding.md @@ -15,7 +15,7 @@ This syntax consists of a target event name within parentheses to the left of an In the following example, the target event name is `click` and the template statement is `onSave()`. -<button (click)="onSave()">Save<button> +<button (click)="onSave()">Save</button> The event binding listens for the button's click events and calls the component's `onSave()` method whenever a click occurs.