From a26447048c2b93cf2b610a0286ed1ff47e9974dd Mon Sep 17 00:00:00 2001 From: Mikayla Hutchinson Date: Thu, 14 Jun 2018 20:31:15 -0400 Subject: [PATCH] Fix more warnings --- src/framework/Internal/RandomGenerator.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/framework/Internal/RandomGenerator.cs b/src/framework/Internal/RandomGenerator.cs index 4b37287..a540d5b 100755 --- a/src/framework/Internal/RandomGenerator.cs +++ b/src/framework/Internal/RandomGenerator.cs @@ -74,7 +74,7 @@ public int GetInt() return Rand.Next(); } /// - /// Get Next Integer within the specified min & max from Random + /// Get Next Integer within the specified min & max from Random /// /// /// @@ -95,7 +95,7 @@ public short GetShort() return (short)Rand.Next(short.MinValue, short.MaxValue); } /// - /// Get Next Short within the specified min & max from Random + /// Get Next Short within the specified min & max from Random /// /// /// @@ -116,7 +116,7 @@ public byte GetByte() return (byte)Rand.Next(Byte.MinValue, Byte.MaxValue); } /// - /// Get Next Byte within the specified min & max from Random + /// Get Next Byte within the specified min & max from Random /// /// ///