Skip to content

Commit

Permalink
fix: Fix minor spelling errors (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminMichaelis authored Nov 13, 2023
1 parent 8bbb57c commit 4663b98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Chapter03.Tests/Table03.01.Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/Chapter03/Table03.01.TupleDeclarationAndAssignment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void AssignTupleToIndividuallyDeclaredVariables()
}

// 2.
public void AssignTupleToIndividuallyDeclaredVariablesThatArPreDeclared()
public void AssignTupleToIndividuallyDeclaredVariablesThatArePreDeclared()
{
string country;
string capital;
Expand Down
4 changes: 2 additions & 2 deletions src/Chapter08.Tests/UndersandingAccessModifiers.Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4663b98

Please sign in to comment.