From 9b9526e5a88d7675f654fc775dc8e29a1d90cccd Mon Sep 17 00:00:00 2001 From: Daniel Abramov Date: Tue, 22 Mar 2022 18:09:01 +0100 Subject: [PATCH] Update src/lib.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a typo in the comment. Co-authored-by: Sebastian Dröge --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f27f3cb..5f85502 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -273,7 +273,7 @@ where fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll> { trace!("{}:{} Stream.poll_next", file!(), line!()); - // The connection has been closed or the critical error has occurred. + // The connection has been closed or a critical error has occurred. // We have already returned the error to the user, the `Stream` is unusable, // so we assume that the stream has been "fused". if self.ended {