Removed extra / from comment

This commit is contained in:
Mark J Price 2023-03-16 09:41:00 +00:00
parent 93f4f0c284
commit d67ea3b664
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ public class PersonComparer : IComparer<Person?>
// ...compare the Name lengths... // ...compare the Name lengths...
int result = x.Name.Length.CompareTo(y.Name.Length); int result = x.Name.Length.CompareTo(y.Name.Length);
/// ...if they are equal... // ...if they are equal...
if (result == 0) if (result == 0)
{ {
// ...then compare by the Names... // ...then compare by the Names...

View file

@ -14,7 +14,7 @@ public class PersonComparer : IComparer<Person?>
// ...compare the Name lengths... // ...compare the Name lengths...
int result = x.Name.Length.CompareTo(y.Name.Length); int result = x.Name.Length.CompareTo(y.Name.Length);
/// ...if they are equal... // ...if they are equal...
if (result == 0) if (result == 0)
{ {
// ...then compare by the Names... // ...then compare by the Names...