docs: Fix typo in comment

pull/24376/head
Marko Mikulicic 2021-04-29 23:38:09 +02:00 committed by GitHub
parent 2d643d4407
commit 8da332c19c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ pub type Result<T, E = Error> = std::result::Result<T, E>;
/// A metric registry with handy helpers for asserting conditions on metrics.
///
/// You can either initialise a default `TestMetricRegistry` and use the
/// `registry()` method to inject a `MetricsRegistry` wherever you need it.
/// `registry()` method to inject a `MetricRegistry` wherever you need it.
/// Alternatively you can provide an existing `MetricRegistry` via `new`.
///
///