From 8d27016cb76597001cb3a3b7b1792863b338ac0d Mon Sep 17 00:00:00 2001 From: js6pak Date: Sat, 10 Apr 2021 23:00:34 +0200 Subject: [PATCH] Fix xmldoc warnings --- src/Impostor.Api/Extensions/DictionaryExtensions.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Impostor.Api/Extensions/DictionaryExtensions.cs b/src/Impostor.Api/Extensions/DictionaryExtensions.cs index b8b682f..39a19ec 100644 --- a/src/Impostor.Api/Extensions/DictionaryExtensions.cs +++ b/src/Impostor.Api/Extensions/DictionaryExtensions.cs @@ -5,8 +5,11 @@ namespace Impostor.Api { public static class DictionaryExtensions { - /// Returns a read-only wrapper for the dictionary. - /// An object that acts as a read-only wrapper around the . + /// Returns a read-only wrapper for the dictionary. + /// An to create a from. + /// The type of the keys of . + /// The type of the values of . + /// An object that acts as a read-only wrapper around the . public static ReadOnlyDictionary AsReadOnly(this IDictionary dictionary) where TKey : notnull { -- 2.39.5