From 520a81b04a75122470a749dbeba9f5aeb70d66ee Mon Sep 17 00:00:00 2001 From: Jay Wang Date: Wed, 24 Jun 2026 11:46:04 +0900 Subject: [PATCH] docs: remove repeated word in AllowStdIo summary The `implement` is repeated twice so removed one. --- futures-util/src/io/allow_std.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/futures-util/src/io/allow_std.rs b/futures-util/src/io/allow_std.rs index 96133cbc6f..1024136588 100644 --- a/futures-util/src/io/allow_std.rs +++ b/futures-util/src/io/allow_std.rs @@ -6,8 +6,8 @@ use std::vec::Vec; use std::{fmt, io}; /// A simple wrapper type which allows types which implement only -/// implement `std::io::Read` or `std::io::Write` -/// to be used in contexts which expect an `AsyncRead` or `AsyncWrite`. +/// `std::io::Read` or `std::io::Write` to be used +/// in contexts which expect an `AsyncRead` or `AsyncWrite`. /// /// If these types issue an error with the kind `io::ErrorKind::WouldBlock`, /// it is expected that they will notify the current task on readiness.