Skip to content

Commit

Permalink
Grammar corrections (#25427)
Browse files Browse the repository at this point in the history
Fixes #25426
  • Loading branch information
roji authored Aug 4, 2021
1 parent 85ac269 commit 6dbbe99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EFCore/ChangeTracking/ChangeTracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public virtual void AcceptAllChanges()

/// <summary>
/// <para>
/// Begins tracking an entity and any entities that are reachable by traversing it's navigation properties.
/// Begins tracking an entity and any entities that are reachable by traversing its navigation properties.
/// Traversal is recursive so the navigation properties of any discovered entities will also be scanned.
/// The specified <paramref name="callback" /> is called for each discovered entity and must set the
/// <see cref="EntityEntry.State" /> that each entity should be tracked in. If no state is set, the entity
Expand All @@ -260,7 +260,7 @@ public virtual void AcceptAllChanges()
/// call is complete.
/// </para>
/// <para>
/// If an entity is discovered that is already tracked by the context, that entity is not processed (and it's
/// If an entity is discovered that is already tracked by the context, that entity is not processed (and its
/// navigation properties are not traversed).
/// </para>
/// </summary>
Expand Down Expand Up @@ -289,7 +289,7 @@ public virtual void TrackGraph(

/// <summary>
/// <para>
/// Begins tracking an entity and any entities that are reachable by traversing it's navigation properties.
/// Begins tracking an entity and any entities that are reachable by traversing its navigation properties.
/// Traversal is recursive so the navigation properties of any discovered entities will also be scanned.
/// The specified <paramref name="callback" /> is called for each discovered entity and must set the
/// <see cref="EntityEntry.State" /> that each entity should be tracked in. If no state is set, the entity
Expand Down

0 comments on commit 6dbbe99

Please sign in to comment.