Skip to content

Commit 199994e

Browse files
authored
Fix TaggedMetricFactory constructor params order (#45)
1 parent a5df982 commit 199994e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public abstract class TaggedMetricFactory<TMetric> : IMetricReadingWriter, IMetr
1616
/// <summary>
1717
/// Used by derived classes to pass the name, description and unit for a tag.
1818
/// </summary>
19-
protected TaggedMetricFactory(string name, string description, string unit, MetricSourceOptions options)
19+
protected TaggedMetricFactory(string name, string unit, string description, MetricSourceOptions options)
2020
{
2121
if (name == null)
2222
{

0 commit comments

Comments
 (0)