Enforce 130 character length limit

This commit is contained in:
Oliver Booth 2021-03-07 17:55:11 +00:00
parent c0425d0afd
commit 7c4ad9993e
1 changed files with 3 additions and 1 deletions

View File

@ -69,7 +69,9 @@ namespace X10D.RandomExtensions
/// <paramref name="maxValue" />.
/// </returns>
/// <exception cref="ArgumentNullException"><paramref name="random" /> is <see langword="null" />.</exception>
/// <exception cref="ArgumentException"><paramref name="maxValue" /> is less than <paramref name="minValue" />.</exception>
/// <exception cref="ArgumentException">
/// <paramref name="maxValue" /> is less than <paramref name="minValue" />.
/// </exception>
public static double NextDouble(this Random random, double minValue, double maxValue)
{
if (random is null)