core: fix verb tense in http2 stream comment (#7778)

'needs to be send' -> 'needs to be sent'. Comment-only, no functional change.
This commit is contained in:
SpiliosDmk 2026-07-25 08:20:30 +03:00 committed by GitHub
parent 96195e4a61
commit e710b9c18e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)