From e710b9c18e18f0a3fe104fbfc72d49c221dfe448 Mon Sep 17 00:00:00 2001 From: SpiliosDmk <150211937+SpiliosDimakopoulos@users.noreply.github.com> Date: Sat, 25 Jul 2026 08:20:30 +0300 Subject: [PATCH] core: fix verb tense in http2 stream comment (#7778) 'needs to be send' -> 'needs to be sent'. Comment-only, no functional change. --- scrapy/core/http2/stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/core/http2/stream.py b/scrapy/core/http2/stream.py index 4d072c555..c6226bbca 100644 --- a/scrapy/core/http2/stream.py +++ b/scrapy/core/http2/stream.py @@ -315,7 +315,7 @@ class Stream: 0, self.metadata["remaining_content_length"] ) - # End the stream if no more data needs to be send + # End the stream if no more data needs to be sent if self.metadata["remaining_content_length"] == 0: self._protocol.conn.end_stream(self.stream_id)