From f34fa22740a4ebeb81aaa12cb5666cee51e42111 Mon Sep 17 00:00:00 2001 From: Tuomas Tajakka <52465751+ttajakka@users.noreply.github.com> Date: Wed, 20 Aug 2025 22:03:26 +0300 Subject: [PATCH] fix: typo The return type is correct in the source code but incorrect in the docstring --- library/core/src/task/poll.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/task/poll.rs b/library/core/src/task/poll.rs index ca668361ef63b..59ffe7ad49c05 100644 --- a/library/core/src/task/poll.rs +++ b/library/core/src/task/poll.rs @@ -125,7 +125,7 @@ impl Poll> { } } - /// Maps a `Poll::Ready>` to `Poll::Ready>` by + /// Maps a `Poll::Ready>` to `Poll::Ready>` by /// applying a function to a contained `Poll::Ready(Err)` value, leaving all other /// variants untouched. ///