[cleanup] Fix some typos (#4194)

Authored by: crazymoose77756
This commit is contained in:
crazymoose77756 2022-06-26 20:50:06 -04:00 committed by GitHub
parent 8a40bffaf9
commit 962ffcf89c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 27 additions and 27 deletions

View file

@ -2994,7 +2994,7 @@ def read_batch_urls(batch_fd):
if not url or url.startswith(('#', ';', ']')):
return False
# "#" cannot be stripped out since it is part of the URI
# However, it can be safely stipped out if follwing a whitespace
# However, it can be safely stripped out if following a whitespace
return re.split(r'\s#', url, 1)[0].rstrip()
with contextlib.closing(batch_fd) as fd: