From 82ed27c40b5af06c027b9d5677c4b128fbd4906a Mon Sep 17 00:00:00 2001 From: WhereTheTimeWent <64332179+WhereTheTimeWent@users.noreply.github.com> Date: Wed, 17 Sep 2025 20:15:22 +0200 Subject: [PATCH] Fix: Correct typo in lambda expression --- hub/apps/develop/security/windows-hello-auth-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/apps/develop/security/windows-hello-auth-service.md b/hub/apps/develop/security/windows-hello-auth-service.md index fa1ca07244..6a903f08e3 100644 --- a/hub/apps/develop/security/windows-hello-auth-service.md +++ b/hub/apps/develop/security/windows-hello-auth-service.md @@ -237,7 +237,7 @@ In this exercise, you start with the Windows Hello application built in the firs // If the UserAccountList does not contain the sampleUser Initialize the sample users // This is only needed as it in a Hand on Lab to demonstrate a user migrating // In the real world user accounts would just be in a database - if (!_mockDatabaseUserAccountsList.Any(f = > f.Username.Equals("sampleUsername"))) + if (!_mockDatabaseUserAccountsList.Any(f => f.Username.Equals("sampleUsername"))) { //If the list is empty InitializeSampleUserAccountsAsync and return the list await InitializeSampleUserAccountsAsync();