Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grammar corrections #25427

Merged
merged 1 commit into from
Aug 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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