Skip to content

Commit

Permalink
Code formatting nit
Browse files Browse the repository at this point in the history
  • Loading branch information
justinormont committed Dec 8, 2020
1 parent 49786ed commit 9259031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Microsoft.ML.Data/Evaluators/EvaluatorUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ private static List<string> GetMetricNames(IChannel ch, DataViewSchema schema, D
foreach (var name in names.Items(all: true))
{
var tryNaming = string.Format(metricName, name.Value);
if (tryNaming == metricName) //metricName wasn't a format string, so just append slotname
if (tryNaming == metricName) // metricName wasn't a format string, so just append slotname
tryNaming = (string.Format("{0}{1}", metricName, name.Value));

metricNames.Add(tryNaming);
Expand Down

0 comments on commit 9259031

Please sign in to comment.