diff --git a/crates/service/src/middleware/prometheus_metrics.rs b/crates/service/src/middleware/prometheus_metrics.rs index b9ac16866..3301823ce 100644 --- a/crates/service/src/middleware/prometheus_metrics.rs +++ b/crates/service/src/middleware/prometheus_metrics.rs @@ -83,7 +83,7 @@ where #[pin_project] pub struct PrometheusMetricsFuture { - /// Instant at which we started the requst. + /// Instant at which we started the request. timer: Option, histogram: prometheus::HistogramVec, diff --git a/crates/service/src/routes/static_subgraph.rs b/crates/service/src/routes/static_subgraph.rs index a1ce644e4..8baf36aa6 100644 --- a/crates/service/src/routes/static_subgraph.rs +++ b/crates/service/src/routes/static_subgraph.rs @@ -42,7 +42,7 @@ impl From<&StaticSubgraphError> for StatusCode { impl IntoResponse for StaticSubgraphError { fn into_response(self) -> axum::response::Response { - tracing::error!(%self, "StaticSubgraphError occoured."); + tracing::error!(%self, "StaticSubgraphError occurred."); ( StatusCode::from(&self), Json(json! {{ diff --git a/crates/service/src/tap/checks/value_check.rs b/crates/service/src/tap/checks/value_check.rs index f7bc129c0..111a3ef72 100644 --- a/crates/service/src/tap/checks/value_check.rs +++ b/crates/service/src/tap/checks/value_check.rs @@ -329,7 +329,7 @@ impl Check for MinimumValue { value, expected_value, should_accept, - "Evaluating mininum query fee." + "Evaluating minimum query fee." ); if should_accept {