Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanosiano committed Mar 26, 2024
1 parent 2d7cc55 commit 268ce92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dart/lib/src/metrics/metric.dart
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class CounterMetric extends Metric {
int getWeight() => 1;
}

/// Metric [MetricType.gauge] that track a value that can go up and down.
/// Metric [MetricType.gauge] that tracks a value that can go up and down.
@internal
class GaugeMetric extends Metric {
num _last;
Expand Down Expand Up @@ -196,7 +196,7 @@ class GaugeMetric extends Metric {
int get count => _count;
}

/// Metric [MetricType.set] that track a set of values on which you can perform
/// Metric [MetricType.set] that tracks a set of values on which you can perform
/// aggregations such as count_unique.
@internal
class SetMetric extends Metric {
Expand Down Expand Up @@ -224,7 +224,7 @@ class SetMetric extends Metric {
Set<num> get values => _values;
}

/// Metric [MetricType.distribution] that track a list of values.
/// Metric [MetricType.distribution] that tracks a list of values.
@internal
class DistributionMetric extends Metric {
final List<num> _values = [];
Expand Down

0 comments on commit 268ce92

Please sign in to comment.