Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikayla Hutchinson <m.j.hutchinson@gmail.com>2018-06-15 03:31:15 +0300
committerMikayla Hutchinson <m.j.hutchinson@gmail.com>2018-06-15 03:31:15 +0300
commita26447048c2b93cf2b610a0286ed1ff47e9974dd (patch)
tree1e4522bc7ae77ae8ca2beab4ad14dc72b530b466
parentdd094e78b49d90873a5f62acb48a4843e7845fe7 (diff)
Fix more warningsfix-more-warnings
-rwxr-xr-xsrc/framework/Internal/RandomGenerator.cs6
1 files 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 @@ namespace NUnit.Framework.Internal
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>
@@ -95,7 +95,7 @@ namespace NUnit.Framework.Internal
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>
@@ -116,7 +116,7 @@ namespace NUnit.Framework.Internal
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>