summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-03-12 15:00:32 +0100
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-03-12 16:45:08 +0100
commited984f2ac4923d6bc625adb4e8d9146765a02ab1 (patch)
tree3f2f3086c7d4941cbea01745f235d42af0d377b1 /docs
parentc70dbcf8358ca7ff34e76b11dae0740284663911 (diff)
Refs #34380 -- Fixed the documented URLField default scheme to https.
Missed in 9a3f86e96009c1137b286f6d579b9d812a0dee69.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/forms/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index df8d36e365..8d2ed2d404 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -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"``.