Skip to content

Commit 32b8ad6

Browse files
authored
Add missing comma to xml documentation (#23634)
1 parent a5901c0 commit 32b8ad6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Middleware/Diagnostics.EntityFrameworkCore/src/DatabaseErrorPageExtensions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class DatabaseErrorPageExtensions
1515
{
1616
/// <summary>
1717
/// Captures synchronous and asynchronous database related exceptions from the pipeline that may be resolved using Entity Framework
18-
/// migrations. When these exceptions occur an HTML response with details of possible actions to resolve the issue is generated.
18+
/// migrations. When these exceptions occur, an HTML response with details of possible actions to resolve the issue is generated.
1919
/// </summary>
2020
/// <param name="app">The <see cref="IApplicationBuilder"/> to register the middleware with.</param>
2121
/// <returns>The same <see cref="IApplicationBuilder"/> instance so that multiple calls can be chained.</returns>
@@ -31,7 +31,7 @@ public static IApplicationBuilder UseDatabaseErrorPage(this IApplicationBuilder
3131

3232
/// <summary>
3333
/// Captures synchronous and asynchronous database related exceptions from the pipeline that may be resolved using Entity Framework
34-
/// migrations. When these exceptions occur an HTML response with details of possible actions to resolve the issue is generated.
34+
/// migrations. When these exceptions occur, an HTML response with details of possible actions to resolve the issue is generated.
3535
/// </summary>
3636
/// <param name="app">The <see cref="IApplicationBuilder"/> to register the middleware with.</param>
3737
/// <param name="options">A <see cref="DatabaseErrorPageOptions"/> that specifies options for the middleware.</param>
@@ -59,4 +59,4 @@ public static IApplicationBuilder UseDatabaseErrorPage(
5959
return app;
6060
}
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)