Skip to content

Commit 0c03e86

Browse files
authored
Bugfix for merged PR #1855 (#1858)
Bugfix for a likely typo in merged PR #1855: Equals(SizeUnit, other.CodeSizeUnit)` -> Equals(**Code**SizeUnit, other.CodeSizeUnit)
1 parent 34817bf commit 0c03e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BenchmarkDotNet/Reports/SummaryStyle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public bool Equals(SummaryStyle other)
7272
&& PrintUnitsInContent == other.PrintUnitsInContent
7373
&& PrintZeroValuesInContent == other.PrintZeroValuesInContent
7474
&& Equals(SizeUnit, other.SizeUnit)
75-
&& Equals(SizeUnit, other.CodeSizeUnit)
75+
&& Equals(CodeSizeUnit, other.CodeSizeUnit)
7676
&& Equals(TimeUnit, other.TimeUnit)
7777
&& MaxParameterColumnWidth == other.MaxParameterColumnWidth
7878
&& RatioStyle == other.RatioStyle;

0 commit comments

Comments
 (0)