(#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
1 changed files with 1 additions and 1 deletions

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)
{ {