From a300c89b3f0c3e2b41d22484eb1e956e326f6ace Mon Sep 17 00:00:00 2001 From: tz629 <142957239+tz629@users.noreply.github.com> Date: Wed, 23 Aug 2023 20:19:48 -0600 Subject: [PATCH] Fix typo (#2770) --- futures-util/src/io/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-util/src/io/window.rs b/futures-util/src/io/window.rs index 77b7267c69..d857282383 100644 --- a/futures-util/src/io/window.rs +++ b/futures-util/src/io/window.rs @@ -1,6 +1,6 @@ use std::ops::{Bound, Range, RangeBounds}; -/// A owned window around an underlying buffer. +/// An owned window around an underlying buffer. /// /// Normally slices work great for considering sub-portions of a buffer, but /// unfortunately a slice is a *borrowed* type in Rust which has an associated