From 4663b985d23356fc1f95a09990c309fe1fe8021c Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Mon, 13 Nov 2023 07:50:53 +0100 Subject: [PATCH] fix: Fix minor spelling errors (#591) --- src/Chapter03.Tests/Table03.01.Tests.cs | 4 ++-- src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs | 2 +- src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Chapter03.Tests/Table03.01.Tests.cs b/src/Chapter03.Tests/Table03.01.Tests.cs index 4e695727..2f4d3cac 100644 --- a/src/Chapter03.Tests/Table03.01.Tests.cs +++ b/src/Chapter03.Tests/Table03.01.Tests.cs @@ -14,11 +14,11 @@ public void AssignTupleToIndividuallyDeclaredVariables() } [TestMethod] - public void AssignTupleToIndividuallyDeclaredVariablesThatArPreDeclared() + public void AssignTupleToIndividuallyDeclaredVariablesThatArePreDeclared() { string expected = $"The poorest country in the world in 2017 was Burundi, Bujumbura: {263.67}"; IntelliTect.TestTools.Console.ConsoleAssert.Expect(expected, - _sut.AssignTupleToIndividuallyDeclaredVariablesThatArPreDeclared); + _sut.AssignTupleToIndividuallyDeclaredVariablesThatArePreDeclared); } [TestMethod] diff --git a/src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs b/src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs index 4ce3a935..24a0d7f3 100644 --- a/src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs +++ b/src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs @@ -13,7 +13,7 @@ public void AssignTupleToIndividuallyDeclaredVariables() } // 2. - public void AssignTupleToIndividuallyDeclaredVariablesThatArPreDeclared() + public void AssignTupleToIndividuallyDeclaredVariablesThatArePreDeclared() { string country; string capital; diff --git a/src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs b/src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs index 7626f590..b41d8b39 100644 --- a/src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs +++ b/src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs @@ -32,11 +32,11 @@ string ISampleInterface.ProtectedInterfaceMethod() => /* public */ //string ISampleInterface.PublicConcreteInterfaceMethod() => - // Self-invokes causing infinate loop + // Self-invokes causing infinite loop // ((ISampleInterface)this).PublicConcreteInterfaceMethod(); //string ISampleInterface.PublicConcreteInterfaceMethod() => - // Self-invokes causing infinate loop + // Self-invokes causing infinite loop // PublicConcreteInterfaceMethod(); } public class Information : IMoreInformation