summaryrefslogtreecommitdiff
path: root/docs/releases/3.2.txt
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2025-05-27 17:37:22 +0100
committernessita <124304+nessita@users.noreply.github.com>2025-08-25 10:51:10 -0300
commit6f8e23d1c10c7ce32cea82b65ad2af640015f147 (patch)
tree692a42d2a3c54a6610b17cc14679734973d98d89 /docs/releases/3.2.txt
parentef2f16bc4824ca2b10b7f2845baf4d313c9c0da1 (diff)
Refs #36485 -- Removed unnecessary parentheses in :meth: and :func: roles in docs.
Diffstat (limited to 'docs/releases/3.2.txt')
-rw-r--r--docs/releases/3.2.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/releases/3.2.txt b/docs/releases/3.2.txt
index 0b695ef19e..9a49075d37 100644
--- a/docs/releases/3.2.txt
+++ b/docs/releases/3.2.txt
@@ -380,7 +380,7 @@ Migrations
Models
~~~~~~
-* The new ``no_key`` parameter for :meth:`.QuerySet.select_for_update()`,
+* The new ``no_key`` parameter for :meth:`.QuerySet.select_for_update`,
supported on PostgreSQL, allows acquiring weaker locks that don't block the
creation of rows that reference locked rows through a foreign key.
@@ -400,7 +400,7 @@ Models
* :class:`FilteredRelation() <django.db.models.FilteredRelation>` now supports
nested relations.
-* The ``of`` argument of :meth:`.QuerySet.select_for_update()` is now allowed
+* The ``of`` argument of :meth:`.QuerySet.select_for_update` is now allowed
on MySQL 8.0.1+.
* :class:`Value() <django.db.models.Value>` expression now
@@ -422,7 +422,7 @@ Models
* The new :class:`~django.db.models.functions.Collate` function allows
filtering and ordering by specified database collations.
-* The ``field_name`` argument of :meth:`.QuerySet.in_bulk()` now accepts
+* The ``field_name`` argument of :meth:`.QuerySet.in_bulk` now accepts
distinct fields if there's only one field specified in
:meth:`.QuerySet.distinct`.