docs: fix simple typo, wihout -> without

There is a small typo in scrapy/http/request/form.py.

Should read `without` rather than `wihout`.
This commit is contained in:
Tim Gates 2020-12-22 07:49:13 +11:00
parent d0af008608
commit 6dccf82eaa
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ def _select_value(ele, n, v):
multiple = ele.multiple
if v is None and not multiple:
# Match browser behaviour on simple select tag without options selected
# And for select tags wihout options
# And for select tags without options
o = ele.value_options
return (n, o[0]) if o else (None, None)
elif v is not None and multiple: