diff --git a/docs/architecture/modern-web-apps-azure/work-with-data-in-asp-net-core-apps.md b/docs/architecture/modern-web-apps-azure/work-with-data-in-asp-net-core-apps.md index fbd664e1039bf..d59ea30944346 100644 --- a/docs/architecture/modern-web-apps-azure/work-with-data-in-asp-net-core-apps.md +++ b/docs/architecture/modern-web-apps-azure/work-with-data-in-asp-net-core-apps.md @@ -415,7 +415,6 @@ Add support for memory (or distributed) caching with the following code: ```csharp builder.Services.AddMemoryCache(); builder.Services.AddMvc(); -} ``` Be sure to add the `Microsoft.Extensions.Caching.Memory` NuGet package as well.