1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-10 03:05:42 +00:00

(#15) Indent </code> in XMLdoc for Random<T>

This commit is contained in:
Oliver Booth 2021-03-07 12:01:37 +00:00
parent f073c13f03
commit 6bc60d2a3a

View File

@ -25,7 +25,7 @@ namespace X10D.ListExtensions
/// <code lang="csharp"> /// <code lang="csharp">
/// var list = new List&lt;int&gt; { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; /// var list = new List&lt;int&gt; { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
/// var number = list.Random(); /// var number = list.Random();
/// </code> /// </code>
/// </example> /// </example>
public static T Random<T>(this IReadOnlyList<T> source, Random? random = null) public static T Random<T>(this IReadOnlyList<T> source, Random? random = null)
{ {