From d67ea3b664b2d6e9d83cb7df4788c367193b5530 Mon Sep 17 00:00:00 2001 From: Mark J Price Date: Thu, 16 Mar 2023 09:41:00 +0000 Subject: [PATCH] Removed extra / from comment --- vs4win/Chapter06/PacktLibrary/PersonComparer.cs | 2 +- vscode/Chapter06/PacktLibrary/PersonComparer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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...