From d1355caa74da5d124291885f1ccc2dac3237a408 Mon Sep 17 00:00:00 2001 From: SephirotJustin <39102238+SephirotJustin@users.noreply.github.com> Date: Tue, 10 Nov 2020 13:04:10 +0100 Subject: [PATCH] docs: added missing slash to close tag (#39626) PR Close #39626 --- aio/content/guide/event-binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.