Skip to content

Commit 608d908

Browse files
committed
Updates XML summary
1 parent 8a93c14 commit 608d908

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Microsoft.OpenApi/Helpers/DictionaryCloneHelper.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public class DictionaryCloneHelper
1414
/// <summary>
1515
/// Deep clone key value pairs in a dictionary.
1616
/// </summary>
17-
/// <typeparam name="T"></typeparam>
18-
/// <typeparam name="U"></typeparam>
19-
/// <param name="dictionary"></param>
20-
/// <returns></returns>
17+
/// <typeparam name="T">The type of the key of the dictionary.</typeparam>
18+
/// <typeparam name="U">The type of the value of the dictionary.</typeparam>
19+
/// <param name="dictionary">The target dictionary to clone.</param>
20+
/// <returns>The cloned dictionary.</returns>
2121
public static Dictionary<T, U> Clone<T, U>(IDictionary<T, U> dictionary)
2222
{
2323
var clonedDictionary = new Dictionary<T, U>();

0 commit comments

Comments
 (0)