Grammar: Fix "it's" vs "its" in several places (#2518)

This commit is contained in:
Nick Price
2024-01-15 21:48:11 +01:00
committed by GitHub
parent 94901e0fe7
commit 934b1aac06
12 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ async fn main() {
// `TokioIo` converts between them.
let stream = TokioIo::new(stream);
// Hyper has also its own `Service` trait and doesn't use tower. We can use
// Hyper also has its own `Service` trait and doesn't use tower. We can use
// `hyper::service::service_fn` to create a hyper `Service` that calls our app through
// `tower::Service::call`.
let hyper_service = hyper::service::service_fn(move |request: Request<Incoming>| {