Fix typos in IsPrimeTests xmldoc

This commit is contained in:
Oliver Booth 2021-07-20 14:51:09 +01:00
parent 09e126fa08
commit 1205290ab4
No known key found for this signature in database
GPG Key ID: A4AC17007530E9B4
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,9 @@ namespace X10D.Tests.Core
/// Tests for this extension method are delegated to their own test class because of the non-trivial requirements for /// Tests for this extension method are delegated to their own test class because of the non-trivial requirements for
/// loading testing prime numbers. /// loading testing prime numbers.
/// </remarks> /// </remarks>
/// <seealso cref="Int16Extensions.IsPrime(short)" />
/// <seealso cref="Int32Extensions.IsPrime(int)" /> /// <seealso cref="Int32Extensions.IsPrime(int)" />
/// <seealso cref="Int64Extensions.IsPrime(long)" />
[TestClass] [TestClass]
public class IsPrimeTests public class IsPrimeTests
{ {
@ -57,7 +59,7 @@ namespace X10D.Tests.Core
} }
/// <summary> /// <summary>
/// Asserts that all negative numbers are not prime. /// Asserts that values 0 and 1 are not prime.
/// </summary> /// </summary>
[TestMethod] [TestMethod]
public void LessThan2() public void LessThan2()