Skip to content

Commit a0b4fa3

Browse files
author
Alex Peck
committed
rem paren
1 parent 0b56527 commit a0b4fa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BitFaster.Caching.ThroughputAnalysis/Exporter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,13 +131,13 @@ public string MapTitle(Mode mode, int cacheSize)
131131
switch (mode)
132132
{
133133
case Mode.Read:
134-
return $"Read throughput (100% cache hit) ({os}/{arch}/{fwk})";
134+
return $"Read throughput, 100% cache hit ({os}/{arch}/{fwk})";
135135
case Mode.ReadWrite:
136136
return $"Read + Write throughput ({os}/{arch}/{fwk})";
137137
case Mode.Update:
138138
return $"Update throughput ({os}/{arch}/{fwk})";
139139
case Mode.Evict:
140-
return $"Eviction throughput (100% cache miss) ({os}/{arch}/{fwk})";
140+
return $"Eviction throughput, 100% cache miss ({os}/{arch}/{fwk})";
141141
default:
142142
return $"{mode} {cacheSize}";
143143
}

0 commit comments

Comments
 (0)