From ff1219e86a0fa9d0be625461aa5b0ec1437a5331 Mon Sep 17 00:00:00 2001 From: Christian <70714090+chrisxfire@users.noreply.github.com> Date: Fri, 14 Apr 2023 14:30:20 -0600 Subject: [PATCH] Update work-with-data-in-asp-net-core-apps.md Removes a closing brace that was out of place. --- .../modern-web-apps-azure/work-with-data-in-asp-net-core-apps.md | 1 - 1 file changed, 1 deletion(-) 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.