From b21ad610e5855194e9f20c8ff89394f9bccd65cb Mon Sep 17 00:00:00 2001 From: Mathieu ROUDAUT Date: Thu, 3 Apr 2025 08:26:53 +0200 Subject: [PATCH] fix: minor typo in chapter 17 documentation --- nostarch/chapter17.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostarch/chapter17.md b/nostarch/chapter17.md index 488036ac76..32ec33dd0f 100644 --- a/nostarch/chapter17.md +++ b/nostarch/chapter17.md @@ -2737,7 +2737,7 @@ knows when to check any given future while still being lazy. Again, the details of how that works are beyond the scope of this chapter, and you generally only need to think about this when writing a custom `Future` implementation. We’ll focus instead on the type for `self`, as this is the first time we’ve seen a -method where `self` has a type annotation. A type annotation for `self` is works +method where `self` has a type annotation. A type annotation for `self` works like type annotations for other function parameters, but with two key differences: