Patch Components topic example code (#12093)

pull/12100/head
Luke Latham 2019-04-22 06:18:58 -05:00 committed by GitHub
parent 1ff0babadf
commit 5f82606db3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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}.";
}
}
```