(#36) Fix parameter clusivity

This commit is contained in:
Oliver Booth 2021-03-08 18:46:55 +00:00
parent 41d09695e0
commit 3230b12f12
1 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ namespace X10D.RandomExtensions
/// <param name="random">The <see cref="System.Random" /> instance.</param> /// <param name="random">The <see cref="System.Random" /> instance.</param>
/// <param name="minValue">The inclusive lower bound of the random number returned.</param> /// <param name="minValue">The inclusive lower bound of the random number returned.</param>
/// <param name="maxValue"> /// <param name="maxValue">
/// The inclusive upper bound of the random number returned. This value must be greater than or equal to /// The exclusive upper bound of the random number returned. This value must be greater than or equal to
/// <paramref name="minValue" />. /// <paramref name="minValue" />.
/// </param> /// </param>
/// <returns> /// <returns>
@ -153,7 +153,7 @@ namespace X10D.RandomExtensions
/// <param name="random">The <see cref="System.Random" /> instance.</param> /// <param name="random">The <see cref="System.Random" /> instance.</param>
/// <param name="minValue">The inclusive lower bound of the random number returned.</param> /// <param name="minValue">The inclusive lower bound of the random number returned.</param>
/// <param name="maxValue"> /// <param name="maxValue">
/// The inclusive lower bound of the random number returned. This value must be greater than or equal to /// The exclusive lower bound of the random number returned. This value must be greater than or equal to
/// <paramref name="minValue" />. /// <paramref name="minValue" />.
/// </param> /// </param>
/// <returns> /// <returns>