From ba6b25af0cf91c25e6950723a785a794a9060e29 Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Fri, 15 Jul 2022 20:49:34 +0100 Subject: [PATCH] Correct XML docs for IReadOnlyStoreObjectDictionary.Find. --- .../Metadata/IReadOnlyStoreObjectDictionary.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/EFCore.Relational/Metadata/IReadOnlyStoreObjectDictionary.cs b/src/EFCore.Relational/Metadata/IReadOnlyStoreObjectDictionary.cs index fba2b1c4ef6..f7490d6dbe7 100644 --- a/src/EFCore.Relational/Metadata/IReadOnlyStoreObjectDictionary.cs +++ b/src/EFCore.Relational/Metadata/IReadOnlyStoreObjectDictionary.cs @@ -15,8 +15,7 @@ public interface IReadOnlyStoreObjectDictionary /// /// The key of the value to get. /// - /// if the collection contains an element with the specified key; - /// otherwise, . + /// The value associated with the specified key, or if not found. /// T? Find(in StoreObjectIdentifier storeObject);