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

Commit a264470

Browse files
committed
Fix more warnings
1 parent dd094e7 commit a264470

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/framework/Internal/RandomGenerator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public int GetInt()
7474
return Rand.Next();
7575
}
7676
/// <summary>
77-
/// Get Next Integer within the specified min & max from Random
77+
/// Get Next Integer within the specified min &amp; max from Random
7878
/// </summary>
7979
/// <param name="min"></param>
8080
/// <param name="max"></param>
@@ -95,7 +95,7 @@ public short GetShort()
9595
return (short)Rand.Next(short.MinValue, short.MaxValue);
9696
}
9797
/// <summary>
98-
/// Get Next Short within the specified min & max from Random
98+
/// Get Next Short within the specified min &amp; max from Random
9999
/// </summary>
100100
/// <param name="min"></param>
101101
/// <param name="max"></param>
@@ -116,7 +116,7 @@ public byte GetByte()
116116
return (byte)Rand.Next(Byte.MinValue, Byte.MaxValue);
117117
}
118118
/// <summary>
119-
/// Get Next Byte within the specified min & max from Random
119+
/// Get Next Byte within the specified min &amp; max from Random
120120
/// </summary>
121121
/// <param name="min"></param>
122122
/// <param name="max"></param>

0 commit comments

Comments
 (0)