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:
authorMarius Ungureanu <teromario@yahoo.com>2018-06-15 10:27:09 +0300
committerGitHub <noreply@github.com>2018-06-15 10:27:09 +0300
commit9b7497c4542a8f689d1e92d4da005103f7315896 (patch)
tree1e4522bc7ae77ae8ca2beab4ad14dc72b530b466
parentdd094e78b49d90873a5f62acb48a4843e7845fe7 (diff)
parenta26447048c2b93cf2b610a0286ed1ff47e9974dd (diff)
Merge pull request #15 from mono/fix-more-warnings
Fix docs 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>