From 2878dfa9c1d141e6a5c681baafdb2bf5cb44035e Mon Sep 17 00:00:00 2001 From: Hector Date: Fri, 10 Jul 2026 19:14:29 +0200 Subject: [PATCH] docs: fix CS1574 XML cref for AnyAsync --- .../TodoApp.BlazorWasm.Server/Database/TodoContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/todoapp-blazor-wasm/TodoApp.BlazorWasm.Server/Database/TodoContext.cs b/samples/todoapp-blazor-wasm/TodoApp.BlazorWasm.Server/Database/TodoContext.cs index 09901e8..98244da 100644 --- a/samples/todoapp-blazor-wasm/TodoApp.BlazorWasm.Server/Database/TodoContext.cs +++ b/samples/todoapp-blazor-wasm/TodoApp.BlazorWasm.Server/Database/TodoContext.cs @@ -57,7 +57,7 @@ public class TodoContext(DbContextOptions options) : DbContext(opti /// This method performs the following operations: /// /// Ensures the database is created using . - /// Checks if the TodoItems table is empty using . + /// Checks if the TodoItems table is empty using . /// If empty, clears the change tracker to avoid entity tracking conflicts. /// Adds three sample todo items with predefined titles. /// Saves the sample data to the database.