Skip to content

Commit

Permalink
Fix typos on DeleteBehavior.cs (dotnet#32781)
Browse files Browse the repository at this point in the history
  • Loading branch information
EngincanV authored Jan 11, 2024
1 parent 6ee6fcd commit 96928ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/EFCore.Abstractions/DeleteBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Microsoft.EntityFrameworkCore;
public enum DeleteBehavior
{
/// <summary>
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities, and creates
/// Sets foreign key values to <see langword="null" /> as appropriate when changes are made to tracked entities and creates
/// a non-cascading foreign key constraint in the database. This is the default for optional relationships.
/// </summary>
/// <remarks>
Expand All @@ -41,7 +41,7 @@ public enum DeleteBehavior
ClientSetNull,

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

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

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

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

0 comments on commit 96928ab

Please sign in to comment.