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

Fix docs warnings #15

Merged
merged 1 commit into from
Jun 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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