From 91bb68df4bde7b1eb09f93be99e7686a3350d721 Mon Sep 17 00:00:00 2001 From: Taaha Zahid Date: Wed, 23 Aug 2023 15:52:14 -0600 Subject: [PATCH] fix typo --- 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