summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-17 12:13:10 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-17 12:13:40 +0200
commit2b5c5e54de6545c6cf3cc97996b37618cbae87bd (patch)
tree3003bf71bf677aed381c598d160dd545bc7cb457 /docs/ref/models
parent201d29b3719ef15637648be7bd947ef90a66ab55 (diff)
[4.2.x] Updated broken links in docs.
Backport of 93830abf7694e0f281931f10eeaa34993855e7dd from main
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 7374ea6b63..139b338460 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -279,7 +279,7 @@ Django provides an ``IntegerChoices`` class. For example::
suit = models.IntegerField(choices=Suit.choices)
It is also possible to make use of the `Enum Functional API
-<https://docs.python.org/3/library/enum.html#functional-api>`_ with the caveat
+<https://docs.python.org/3/howto/enum.html#functional-api>`_ with the caveat
that labels are automatically generated as highlighted above:
.. code-block:: pycon