Skip to content

Commit 96928ab

Browse files
authored
Fix typos on DeleteBehavior.cs (#32781)
1 parent 6ee6fcd commit 96928ab

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/EFCore.Abstractions/DeleteBehavior.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Microsoft.EntityFrameworkCore;
2323
public enum DeleteBehavior
2424
{
2525
/// <summary>
26-
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities, and creates
26+
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities and creates
2727
/// a non-cascading foreign key constraint in the database. This is the default for optional relationships.
2828
/// </summary>
2929
/// <remarks>
@@ -41,7 +41,7 @@ public enum DeleteBehavior
4141
ClientSetNull,
4242

4343
/// <summary>
44-
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities, and creates
44+
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities and creates
4545
/// a non-cascading foreign key constraint in the database.
4646
/// </summary>
4747
/// <remarks>
@@ -59,7 +59,7 @@ public enum DeleteBehavior
5959
Restrict,
6060

6161
/// <summary>
62-
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities, and creates
62+
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities and creates
6363
/// a foreign key constraint in the database that propagates <see langword="null" /> values from principals to dependents.
6464
/// </summary>
6565
/// <remarks>
@@ -77,7 +77,7 @@ public enum DeleteBehavior
7777

7878
/// <summary>
7979
/// Automatically deletes dependent entities when the principal is deleted or the relationship to the principal is severed,
80-
/// and creates creates a foreign key constraint in the database with cascading deletes enabled. This is the default for
80+
/// and creates a foreign key constraint in the database with cascading deletes enabled. This is the default for
8181
/// required relationships.
8282
/// </summary>
8383
/// <remarks>
@@ -108,7 +108,7 @@ public enum DeleteBehavior
108108
ClientCascade,
109109

110110
/// <summary>
111-
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities, and creates
111+
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities and creates
112112
/// a non-cascading foreign key constraint in the database.
113113
/// </summary>
114114
/// <remarks>

0 commit comments

Comments
 (0)