1
0
mirror of https://github.com/django/django.git synced 2025-03-24 00:00:45 +00:00

Refs #34380 -- Fixed the documented URLField default scheme to https.

Missed in 9a3f86e96009c1137b286f6d579b9d812a0dee69.
This commit is contained in:
Sarah Boyce 2025-03-12 15:00:32 +01:00
parent c70dbcf835
commit ed984f2ac4

View File

@ -1142,7 +1142,7 @@ For each field, we describe the default widget used if you don't specify
.. attribute:: assume_scheme
The scheme assumed for URLs provided without one. Defaults to
``"http"``. For example, if ``assume_scheme`` is ``"https"`` and the
``"https"``. For example, if ``assume_scheme`` is ``"https"`` and the
provided value is ``"example.com"``, the normalized value will be
``"https://example.com"``.