Browse Source

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

Missed in 9a3f86e96009c1137b286f6d579b9d812a0dee69.
Sarah Boyce 1 week ago
parent
commit
ed984f2ac4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/ref/forms/fields.txt

+ 1 - 1
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"``.