From bc8580795438b0c7c792766bbb52d03cec22e7ee Mon Sep 17 00:00:00 2001 From: "Nicholas R. Smith" Date: Tue, 29 Oct 2024 21:13:53 -0700 Subject: [PATCH] Add a missing apostrophe --- content/blog/2021-05-14-inventing-the-service-trait.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/2021-05-14-inventing-the-service-trait.md b/content/blog/2021-05-14-inventing-the-service-trait.md index d7b2c5d0..5baee816 100644 --- a/content/blog/2021-05-14-inventing-the-service-trait.md +++ b/content/blog/2021-05-14-inventing-the-service-trait.md @@ -264,7 +264,7 @@ Specifically `impl Fn() -> impl Future` is not allowed. Using `Box` would be possible but that has a performance cost we would like to avoid. You also wouldn't be able to add other behavior to your handlers besides calling -them but why thats necessary is something we'll get back to. +them but why that's necessary is something we'll get back to. # The `Handler` trait