From 5f82606db3e706cc5b5b5ad4ce217e84098c952b Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 22 Apr 2019 06:18:58 -0500 Subject: [PATCH] Patch Components topic example code (#12093) --- aspnetcore/blazor/components.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/blazor/components.md b/aspnetcore/blazor/components.md index 560515e6b5..9aca597b08 100644 --- a/aspnetcore/blazor/components.md +++ b/aspnetcore/blazor/components.md @@ -5,7 +5,7 @@ description: Learn how to create and use Razor components, including how to bind monikerRange: '>= aspnetcore-3.0' ms.author: riande ms.custom: mvc -ms.date: 04/18/2019 +ms.date: 04/21/2019 uid: blazor/components --- # Create and use Razor components @@ -314,7 +314,7 @@ It's often convenient to close over additional values, such as when iterating ov private void UpdateHeading(UIMouseEventArgs e, int buttonNumber) { message = $"You selected Button #{buttonNumber} at " + - "mouse position: {e.ClientX} X {e.ClientY}."; + $"mouse position: {e.ClientX} X {e.ClientY}."; } } ```