From 3230b12f12f46c865bbb49aa23cb225082d4a8ad Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Mon, 8 Mar 2021 18:46:55 +0000 Subject: [PATCH] (#36) Fix parameter clusivity --- X10D/src/RandomExtensions/RandomExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/X10D/src/RandomExtensions/RandomExtensions.cs b/X10D/src/RandomExtensions/RandomExtensions.cs index e989b7d..d0952c4 100644 --- a/X10D/src/RandomExtensions/RandomExtensions.cs +++ b/X10D/src/RandomExtensions/RandomExtensions.cs @@ -61,7 +61,7 @@ namespace X10D.RandomExtensions /// The instance. /// The inclusive lower bound of the random number returned. /// - /// 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 /// . /// /// @@ -153,7 +153,7 @@ namespace X10D.RandomExtensions /// The instance. /// The inclusive lower bound of the random number returned. /// - /// 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 /// . /// ///