From 32b8ad6dcea22282d387a40252c94ff28867a471 Mon Sep 17 00:00:00 2001 From: Youssef Victor <31348972+Youssef1313@users.noreply.github.com> Date: Fri, 10 Jul 2020 01:02:11 +0200 Subject: [PATCH] Add missing comma to xml documentation (#23634) --- .../src/DatabaseErrorPageExtensions.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Middleware/Diagnostics.EntityFrameworkCore/src/DatabaseErrorPageExtensions.cs b/src/Middleware/Diagnostics.EntityFrameworkCore/src/DatabaseErrorPageExtensions.cs index 6184c9f3102..5b8170735c9 100644 --- a/src/Middleware/Diagnostics.EntityFrameworkCore/src/DatabaseErrorPageExtensions.cs +++ b/src/Middleware/Diagnostics.EntityFrameworkCore/src/DatabaseErrorPageExtensions.cs @@ -15,7 +15,7 @@ namespace Microsoft.AspNetCore.Builder { /// <summary> /// Captures synchronous and asynchronous database related exceptions from the pipeline that may be resolved using Entity Framework - /// migrations. When these exceptions occur an HTML response with details of possible actions to resolve the issue is generated. + /// migrations. When these exceptions occur, an HTML response with details of possible actions to resolve the issue is generated. /// </summary> /// <param name="app">The <see cref="IApplicationBuilder"/> to register the middleware with.</param> /// <returns>The same <see cref="IApplicationBuilder"/> instance so that multiple calls can be chained.</returns> @@ -31,7 +31,7 @@ namespace Microsoft.AspNetCore.Builder /// <summary> /// Captures synchronous and asynchronous database related exceptions from the pipeline that may be resolved using Entity Framework - /// migrations. When these exceptions occur an HTML response with details of possible actions to resolve the issue is generated. + /// migrations. When these exceptions occur, an HTML response with details of possible actions to resolve the issue is generated. /// </summary> /// <param name="app">The <see cref="IApplicationBuilder"/> to register the middleware with.</param> /// <param name="options">A <see cref="DatabaseErrorPageOptions"/> that specifies options for the middleware.</param> @@ -59,4 +59,4 @@ namespace Microsoft.AspNetCore.Builder return app; } } -} \ No newline at end of file +} -- GitLab