From 6dbbe99d31f76dcc5f98ee15a6cbf44648bbfc6c Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Thu, 5 Aug 2021 01:50:38 +0200 Subject: [PATCH] Grammar corrections (#25427) Fixes #25426 --- src/EFCore/ChangeTracking/ChangeTracker.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/EFCore/ChangeTracking/ChangeTracker.cs b/src/EFCore/ChangeTracking/ChangeTracker.cs index 3f1f7e44864..3d3663eb370 100644 --- a/src/EFCore/ChangeTracking/ChangeTracker.cs +++ b/src/EFCore/ChangeTracking/ChangeTracker.cs @@ -246,7 +246,7 @@ public virtual void AcceptAllChanges() /// /// - /// 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 is called for each discovered entity and must set the /// that each entity should be tracked in. If no state is set, the entity @@ -260,7 +260,7 @@ public virtual void AcceptAllChanges() /// call is complete. /// /// - /// 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). /// /// @@ -289,7 +289,7 @@ public virtual void TrackGraph( /// /// - /// 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 is called for each discovered entity and must set the /// that each entity should be tracked in. If no state is set, the entity