From 1205290ab4201e5a499cdd1df1580c2529f1bb85 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 20 Jul 2021 14:51:09 +0100 Subject: [PATCH] Fix typos in IsPrimeTests xmldoc --- X10D.Tests/src/Core/IsPrimeTests.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/X10D.Tests/src/Core/IsPrimeTests.cs b/X10D.Tests/src/Core/IsPrimeTests.cs index 9d12634..0a28d5d 100644 --- a/X10D.Tests/src/Core/IsPrimeTests.cs +++ b/X10D.Tests/src/Core/IsPrimeTests.cs @@ -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 /// loading testing prime numbers. /// + /// /// + /// [TestClass] public class IsPrimeTests { @@ -57,7 +59,7 @@ namespace X10D.Tests.Core } /// - /// Asserts that all negative numbers are not prime. + /// Asserts that values 0 and 1 are not prime. /// [TestMethod] public void LessThan2()