Skip to content

Commit b0fa8eb

Browse files
committed
Order property values
1 parent 341be26 commit b0fa8eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BinlogTool/ListProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ private void Print()
3636
foreach (var property in propertyValues.OrderBy(kvp => kvp.Key))
3737
{
3838
var values = property.Value;
39-
foreach (var value in values)
39+
foreach (var value in values.OrderBy(s => s))
4040
{
4141
Console.WriteLine($"{property.Key}={value}");
4242
}

0 commit comments

Comments
 (0)