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 /// /// ///