From e707564766b67b9ed6cb426f9d38db7a379ec8cf Mon Sep 17 00:00:00 2001 From: Gervasio Marchand Date: Mon, 27 Dec 2021 16:32:12 +0000 Subject: [PATCH] Fix TaggedMetricFactory constructor params order --- src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs b/src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs index 1d85604..19624b7 100644 --- a/src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs +++ b/src/StackExchange.Metrics/Infrastructure/TaggedMetricFactory.cs @@ -16,7 +16,7 @@ public abstract class TaggedMetricFactory : IMetricReadingWriter, IMetr /// /// Used by derived classes to pass the name, description and unit for a tag. /// - protected TaggedMetricFactory(string name, string description, string unit, MetricSourceOptions options) + protected TaggedMetricFactory(string name, string unit, string description, MetricSourceOptions options) { if (name == null) {