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.