mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
Removed extra / from comment
This commit is contained in:
parent
93f4f0c284
commit
d67ea3b664
|
|
@ -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...
|
||||||
|
|
|
||||||
|
|
@ -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...
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue