From 89ce281656640c77ba589e46fb3e7de88d5e5f0a Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 9 Mar 2021 16:45:48 +0000 Subject: [PATCH] Fix xmldoc for NextDouble(double) No minValue parameter, reference was invalid --- X10D/src/RandomExtensions/RandomExtensions.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/X10D/src/RandomExtensions/RandomExtensions.cs b/X10D/src/RandomExtensions/RandomExtensions.cs index e7f724f..9cf0b91 100644 --- a/X10D/src/RandomExtensions/RandomExtensions.cs +++ b/X10D/src/RandomExtensions/RandomExtensions.cs @@ -61,17 +61,14 @@ namespace X10D.RandomExtensions /// /// The instance. /// - /// The exclusive 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 0. /// /// /// A random double-precision floating point number that is greater than or equal to 0, and less than /// . /// /// is . - /// - /// is less than . - /// + /// is less than 0. public static double NextDouble(this Random random, double maxValue) { if (random is null)