From a6a9a4a6e9c1ff80c5586575cfb3177513dba49d Mon Sep 17 00:00:00 2001 From: Peter Ritchie Date: Mon, 22 May 2023 10:13:16 -0400 Subject: [PATCH] Fixed highight for // Using a custom DI container. (#29333) --- aspnetcore/migration/50-to-60.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/migration/50-to-60.md b/aspnetcore/migration/50-to-60.md index 07e7ed1e2e..39efddd76b 100644 --- a/aspnetcore/migration/50-to-60.md +++ b/aspnetcore/migration/50-to-60.md @@ -159,7 +159,7 @@ In the preceding code, the ` if (env.IsDevelopment())` block is removed because When using a custom dependency injection (DI) container, add the following highlighted code: -[!code-csharp[](~/migration/50-to-60/samples/WebRP31to60/Program.cs?name=snippet_60a&highlight=11-13)] +[!code-csharp[](~/migration/50-to-60/samples/WebRP31to60/Program.cs?name=snippet_60a&highlight=12-14)] [!code-csharp[](~/migration/50-to-60/samples/WebRP31to60/Startup.cs?name=snippet_60a&highlight=17-21)]