From 99c71cfa17eada423428a1045626335119735a64 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:21:00 -0400 Subject: [PATCH] Fix code sample error (#32979) --- .../server/account-confirmation-and-password-recovery.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md b/aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md index 876c4bae14..e4ab5ed6af 100644 --- a/aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md +++ b/aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md @@ -72,8 +72,8 @@ public class EmailSender(IOptions optionsAccessor, public Task SendConfirmationLinkAsync(ApplicationUser user, string email, string confirmationLink) => SendEmailAsync(email, "Confirm your email", - $"Please confirm your account by " + - "clicking here."); + "Please confirm your account by " + + $"clicking here."); public Task SendPasswordResetLinkAsync(ApplicationUser user, string email, string resetLink) => SendEmailAsync(email, "Reset your password",