Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Fix more warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutch committed Jun 15, 2018
1 parent dd094e7 commit a264470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/framework/Internal/RandomGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public int GetInt()
return Rand.Next();
}
/// <summary>
/// Get Next Integer within the specified min & max from Random
/// Get Next Integer within the specified min &amp; max from Random
/// </summary>
/// <param name="min"></param>
/// <param name="max"></param>
Expand All @@ -95,7 +95,7 @@ public short GetShort()
return (short)Rand.Next(short.MinValue, short.MaxValue);
}
/// <summary>
/// Get Next Short within the specified min & max from Random
/// Get Next Short within the specified min &amp; max from Random
/// </summary>
/// <param name="min"></param>
/// <param name="max"></param>
Expand All @@ -116,7 +116,7 @@ public byte GetByte()
return (byte)Rand.Next(Byte.MinValue, Byte.MaxValue);
}
/// <summary>
/// Get Next Byte within the specified min & max from Random
/// Get Next Byte within the specified min &amp; max from Random
/// </summary>
/// <param name="min"></param>
/// <param name="max"></param>
Expand Down

0 comments on commit a264470

Please sign in to comment.