From b22efc804a3827ffe38176b51eaac614958d51e9 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Mon, 9 Aug 2021 10:56:01 +0100 Subject: [PATCH] Fix comment typo --- backend/telemetry_core/src/aggregator/aggregator_set.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/telemetry_core/src/aggregator/aggregator_set.rs b/backend/telemetry_core/src/aggregator/aggregator_set.rs index fb07fc3..f3b916c 100644 --- a/backend/telemetry_core/src/aggregator/aggregator_set.rs +++ b/backend/telemetry_core/src/aggregator/aggregator_set.rs @@ -38,7 +38,7 @@ impl AggregatorSet { &self, ) -> impl Sink + Send + Sync + Unpin + 'static { - // Special case 1 aggregator to avoid the extra indurection and so on + // Special case 1 aggregator to avoid the extra indirection and so on // if we don't actually need it. if self.0.aggregators.len() == 1 { let sub = self.0.aggregators[0].subscribe_shard();