diff --git a/vs4win/Chapter06/PacktLibrary/PersonComparer.cs b/vs4win/Chapter06/PacktLibrary/PersonComparer.cs index 1232a52..d82c584 100644 --- a/vs4win/Chapter06/PacktLibrary/PersonComparer.cs +++ b/vs4win/Chapter06/PacktLibrary/PersonComparer.cs @@ -14,7 +14,7 @@ public class PersonComparer : IComparer // ...compare the Name lengths... int result = x.Name.Length.CompareTo(y.Name.Length); - /// ...if they are equal... + // ...if they are equal... if (result == 0) { // ...then compare by the Names... diff --git a/vscode/Chapter06/PacktLibrary/PersonComparer.cs b/vscode/Chapter06/PacktLibrary/PersonComparer.cs index 1232a52..d82c584 100644 --- a/vscode/Chapter06/PacktLibrary/PersonComparer.cs +++ b/vscode/Chapter06/PacktLibrary/PersonComparer.cs @@ -14,7 +14,7 @@ public class PersonComparer : IComparer // ...compare the Name lengths... int result = x.Name.Length.CompareTo(y.Name.Length); - /// ...if they are equal... + // ...if they are equal... if (result == 0) { // ...then compare by the Names...