From 91e245a7510ec225d2813b6a482a97e5922eadbf Mon Sep 17 00:00:00 2001 From: gsandorx Date: Mon, 31 Oct 2022 12:32:29 -0700 Subject: [PATCH] Fix typo in doc comment (#2703) Co-authored-by: Sandor Gonzalez Co-authored-by: Cijo Thomas Co-authored-by: Timothy Mothra --- .../Metrics/MetricSeriesConfigurationForMeasurement.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BASE/src/Microsoft.ApplicationInsights/Metrics/MetricSeriesConfigurationForMeasurement.cs b/BASE/src/Microsoft.ApplicationInsights/Metrics/MetricSeriesConfigurationForMeasurement.cs index 69f05f8be0..59382f76c9 100644 --- a/BASE/src/Microsoft.ApplicationInsights/Metrics/MetricSeriesConfigurationForMeasurement.cs +++ b/BASE/src/Microsoft.ApplicationInsights/Metrics/MetricSeriesConfigurationForMeasurement.cs @@ -9,7 +9,7 @@ #pragma warning disable CA1034 // "Do not nest type" - part of the public API and too late to change. /// Abstracts the configuration for a metric series aggregated using the "measurement" aggregation kind. - /// A mear=surement is best suited for metrics describing sizes or durations. + /// A measurement is best suited for metrics describing sizes or durations. /// It contains the Min, Max, Sum and Count of values tracked during an aggregation period. public class MetricSeriesConfigurationForMeasurement : IMetricSeriesConfiguration {