From 4128e8fbe7cb5bf957a142163d439a300b8401f7 Mon Sep 17 00:00:00 2001 From: "Prakash G.R" Date: Sat, 26 Dec 2020 17:22:48 +0530 Subject: [PATCH] Missing semicolon (#21046) --- aspnetcore/migration/31-to-50.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/migration/31-to-50.md b/aspnetcore/migration/31-to-50.md index a6468aa7be..63a108d8af 100644 --- a/aspnetcore/migration/31-to-50.md +++ b/aspnetcore/migration/31-to-50.md @@ -711,7 +711,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env) if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); -+ app.UseMigrationsEndPoint() ++ app.UseMigrationsEndPoint(); - app.UseDatabaseErrorPage(); } else